mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-02-26 01:51:30 +01:00
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:KRYO',
|
|
'//core/api:onos-api',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:jersey-server',
|
|
'//utils/rest:onlab-rest',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
'//apps/intentsync:onos-apps-intentsync',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/castor:onos-apps-castor',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
'//apps/routing/common:onos-apps-routing-common',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//incubator/api:onos-incubator-api-tests',
|
|
'//apps/routing-api:onos-apps-routing-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/castor',
|
|
api_title = 'Castor',
|
|
api_version = '1.0',
|
|
api_description = 'REST API for Castor',
|
|
api_package = 'org.onosproject.castor',
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Castor',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'Castor application',
|
|
required_apps = [ 'org.onosproject.intentsynchronizer' ],
|
|
)
|