mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-14 04:52:13 +01:00
- Bumped ONOS dependency on ONOS YANG tools 2.2.0-b4. - Added CLI to compile YANG models. - Added GUI capability to compile YANG models via drag-n-drop or file upload. - Fixed defect in propagating self-contained JAR apps through the cluster. Change-Id: Icbd2a588bf1ffe0282e12d3d10a117e0957c3084
23 lines
457 B
Python
23 lines
457 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:javax.ws.rs-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//lib:jersey-media-multipart',
|
|
'//lib:onos-yang-model',
|
|
'//lib:onos-yang-compiler-api',
|
|
'//lib:onos-yang-runtime',
|
|
'//apps/yang:onos-apps-yang'
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//utils/osgi:onlab-osgi-tests',
|
|
'//web/api:onos-rest-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/yang',
|
|
)
|