mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
- initial sketch of Device Config Synchronizer outline (ONOS-6745) Change-Id: I57c8ab6c3511f12c15e3501aa61498eb18264b27
32 lines
713 B
Python
32 lines
713 B
Python
APPS = [
|
|
'org.onosproject.configsync',
|
|
'org.onosproject.yang',
|
|
'org.onosproject.netconf',
|
|
]
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:onos-yang-model',
|
|
'//lib:onos-yang-runtime',
|
|
'//protocols/netconf/api:onos-protocols-netconf-api',
|
|
'//apps/config:onos-apps-config',
|
|
'//apps/configsync:onos-apps-configsync',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Dynamic Configuration Synchronizer for NETCONF',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'Application to support the Dynamic configuration service.',
|
|
required_apps = APPS,
|
|
)
|