mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-05-12 16:26:17 +02:00
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:
parent
60af96a74e
commit
02a658bb4a
11
apps/route-service/BUILD
Normal file
11
apps/route-service/BUILD
Normal 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,
|
||||
)
|
||||
10
apps/route-service/api/BUILD
Normal file
10
apps/route-service/api/BUILD
Normal 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,
|
||||
)
|
||||
26
apps/route-service/app/BUILD
Normal file
26
apps/route-service/app/BUILD
Normal 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
13
apps/segmentrouting/BUILD
Normal 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' ],
|
||||
)
|
||||
21
apps/segmentrouting/app/BUILD
Normal file
21
apps/segmentrouting/app/BUILD
Normal 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,
|
||||
)
|
||||
14
apps/segmentrouting/web/BUILD
Normal file
14
apps/segmentrouting/web/BUILD
Normal 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',
|
||||
)
|
||||
@ -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]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user