mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-13 16:31:00 +02:00
37 lines
988 B
Python
37 lines
988 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
'//apps/route-service/api:onos-apps-route-service-api',
|
|
'//apps/intentsync:onos-apps-intentsync',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli'
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/sdnip:onos-apps-sdnip',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
'//apps/routing/common:onos-apps-routing-common',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//apps/routing-api:onos-apps-routing-api-tests',
|
|
'//apps/route-service/api:onos-apps-route-service-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'SDN-IP',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'SDN-IP peering application',
|
|
required_apps = [ 'org.onosproject.intentsynchronizer', 'org.onosproject.route-service' ],
|
|
)
|