Build segment routing app with bazel

- add support for apps depending on other apps
- build files for route-service and segment routing

Change-Id: I4850aacfe050f802072e2d59a6a21bcefd784e67
This commit is contained in:
Ray Milkey 2018-06-13 08:52:39 -07:00
parent 60af96a74e
commit 02a658bb4a
7 changed files with 99 additions and 2 deletions

11
apps/route-service/BUILD Normal file
View File

@ -0,0 +1,11 @@
BUNDLES = [
"//apps/route-service/api:onos-apps-route-service-api",
"//apps/route-service/app:onos-apps-route-service-app",
]
onos_app (
title = 'Route Service Server',
category = 'Utility',
url = 'http://onosproject.org',
included_bundles = BUNDLES,
)

View File

@ -0,0 +1,10 @@
COMPILE_DEPS = CORE_DEPS + JACKSON
TEST_DEPS = TEST + [
'//core/api:onos-api-tests',
]
osgi_jar_with_tests (
deps = COMPILE_DEPS,
test_deps = TEST_DEPS,
)

View File

@ -0,0 +1,26 @@
COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [
"@org_apache_karaf_shell_console//jar",
'@concurrent_trees//jar',
'@javax_ws_rs_api//jar',
'@jersey_server//jar',
'//core/store/serializers:onos-core-serializers',
'//apps/route-service/api:onos-apps-route-service-api',
'//cli:onos-cli',
'//utils/rest:onlab-rest',
]
TEST_DEPS = [
'//lib:TEST',
'//apps/route-service/api:onos-apps-route-service-api-tests',
'//core/api:onos-api-tests',
]
osgi_jar_with_tests (
deps = COMPILE_DEPS,
test_deps = TEST_DEPS,
#web_context = '/onos/routeservice',
#api_title = 'Route Service App',
#api_version = '1.0',
#api_description = 'REST API for Route Service App',
#api_package = 'org.onosproject.routeservice.rest',
)

13
apps/segmentrouting/BUILD Normal file
View File

@ -0,0 +1,13 @@
BUNDLES = [
'//apps/segmentrouting/app:onos-apps-segmentrouting-app',
'//apps/segmentrouting/web:onos-apps-segmentrouting-web',
]
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', 'org.onosproject.mcast' ],
)

View File

@ -0,0 +1,21 @@
COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [
"@org_apache_karaf_shell_console//jar",
'//cli:onos-cli',
'//core/common:onos-core-common',
'//core/store/serializers:onos-core-serializers',
'//incubator/api:onos-incubator-api',
'//apps/route-service/api:onos-apps-route-service-api',
'//apps/mcast/api:onos-apps-mcast-api',
'//apps/mcast/cli:onos-apps-mcast-cli',
]
TEST_DEPS = TEST_ADAPTERS + [
'//core/net:onos-core-net',
'//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,
)

View File

@ -0,0 +1,14 @@
COMPILE_DEPS = CORE_DEPS + JACKSON + [
'@javax_ws_rs_api//jar',
'//utils/rest:onlab-rest',
'//apps/segmentrouting/app:onos-apps-segmentrouting-app',
]
osgi_jar_with_tests (
deps = COMPILE_DEPS,
#web_context = '/onos/segmentrouting',
#api_title = 'Segment Routing Rest Server',
#api_version = '1.0',
#api_description = 'REST API for Segment Routing Application',
#api_package = 'org.onosproject.segmentrouting.web',
)

View File

@ -100,11 +100,13 @@ def _onos_app_xml_impl(ctx):
]
for bundle in included_bundles:
arguments += ["-b", maven_coordinates(bundle.label)]
arguments += ["-b", maven_coordinates(bundle.label).replace("mvn:", "")]
for bundle in excluded_bundles:
arguments += ["-e", maven_coordinates(bundle.label)]
arguments += ["-e", maven_coordinates(bundle.label).replace("mvn:", "")]
for feature in required_features:
arguments += ["-f", feature]
for app in required_apps:
arguments += ["-d", app]
if security != "":
arguments += ["-s", security]