mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 10:21:52 +02:00
- ref: http://blog.joda.org/2014/11/converting-from-joda-time-to-javatime.html Change-Id: I1115e8053f601e78cb933ccbfa664ff8787d2da1
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:KRYO',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:javax.ws.rs-api',
|
|
'//cli:onos-cli',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//apps/route-service/api:onos-apps-route-service-api',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/segmentrouting:onos-apps-segmentrouting',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//incubator/api:onos-incubator-api-tests',
|
|
'//apps/route-service/api:onos-apps-route-service-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
# TODO Uncomment here when policy/tunnel are supported
|
|
#web_context = '/onos/segmentrouting',
|
|
#api_title = 'Segment Routing',
|
|
#api_version = '1.0',
|
|
#api_description = 'REST API for Segment Routing',
|
|
#api_package = 'org.onosproject.segmentrouting',
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Segment Routing',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'Segment routing application.',
|
|
required_apps = [ 'org.onosproject.route-service' ],
|
|
)
|