blob: 15eb27326e7e7828b4b3d45c8526c14aab12d873 [file] [log] [blame]
Yuta HIGUCHIa9ae6e62018-02-26 12:56:20 -08001APPS = [
2 'org.onosproject.yang',
3 'org.onosproject.config',
4 'org.onosproject.configsync',
5 'org.onosproject.models.tapi',
6 'org.onosproject.models.openconfig',
7
8 # strictly speaking following are not mandatory
9 'org.onosproject.restconf',
10 'org.onosproject.drivers.netconf',
11 'org.onosproject.netconf',
12 'org.onosproject.configsync-netconf',
13]
14
15COMPILE_DEPS = [
16 '//lib:CORE_DEPS',
17 '//lib:onos-yang-model',
18 '//lib:onos-yang-runtime',
19 '//apps/config:onos-apps-config',
20 '//models/tapi:onos-models-tapi',
21 '//models/openconfig:onos-models-openconfig',
22]
23
24TEST_DEPS = [
25 '//lib:TEST_ADAPTERS',
26]
27
28osgi_jar_with_tests (
29 deps = COMPILE_DEPS,
30 test_deps = TEST_DEPS,
31)
32
33onos_app (
34 title = 'ODTN Service Application',
35 category = 'Traffic Steering',
36 url = 'http://onosproject.org',
37 description = 'ODTN Service Application',
38 required_apps = APPS,
39)