blob: 63c06c1ec20d694cba3458b6efa28e07766b0ecb [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001APPS = [
2 "org.onosproject.configsync",
3 "org.onosproject.yang",
4 "org.onosproject.netconf",
5]
6
7COMPILE_DEPS = CORE_DEPS + [
8 "@onos_yang_model//jar",
9 "@onos_yang_runtime//jar",
10 "//protocols/netconf/api:onos-protocols-netconf-api",
11 "//apps/config:onos-apps-config",
12 "//apps/configsync:onos-apps-configsync",
13]
14
15osgi_jar_with_tests(
16 test_deps = TEST_ADAPTERS,
17 deps = COMPILE_DEPS,
18)
19
20onos_app(
21 category = "Utility",
22 description = "Application to support the Dynamic configuration service.",
23 required_apps = APPS,
24 title = "Dynamic Configuration Synchronizer for NETCONF",
25 url = "http://onosproject.org",
26)