mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-22 12:51:09 +02:00
24 lines
501 B
Python
24 lines
501 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:jersey-client',
|
|
'//lib:jersey-server',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:servlet-api',
|
|
'//lib:javax.inject',
|
|
'//utils/rest:onlab-rest',
|
|
'//apps/restconf/api:onos-apps-restconf-api',
|
|
]
|
|
|
|
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/restconf',
|
|
)
|