mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
35 lines
800 B
Python
35 lines
800 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:cord-config',
|
|
'//cli:onos-cli',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//apps/routing-api:onos-apps-routing-api'
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/segmentrouting:onos-apps-segmentrouting',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
'//lib:cord-config'
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Segment Routing App',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'Segment routing application.',
|
|
)
|