mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-10 02:51:25 +01:00
53 lines
1.4 KiB
Python
53 lines
1.4 KiB
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:NETTY',
|
|
'//lib:JACKSON',
|
|
'//lib:KRYO',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//core/common:onos-core-common',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//cli:onos-cli',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:netty-transport',
|
|
'//lib:netty-buffer',
|
|
'//lib:netty-codec',
|
|
'//lib:netty-handler',
|
|
'//lib:openflowj',
|
|
'//lib:javax.ws.rs-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//providers/openflow/flow:onos-providers-openflow-flow',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/ofagent:onos-apps-ofagent',
|
|
'//providers/openflow/flow:onos-providers-openflow-flow',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
'//core/common:onos-core-common-tests',
|
|
'//lib:TEST_REST',
|
|
'//lib:jersey-server',
|
|
'//web/api:onos-rest-tests',
|
|
'//lib:minimal-json',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/ofagent',
|
|
api_title = 'OFAgent API',
|
|
api_version = '1.0',
|
|
api_description = 'REST API for OFAgent',
|
|
api_package = 'org.onosproject.ofagent.rest',
|
|
)
|
|
|
|
onos_app (
|
|
title = 'OpenFlow Agent',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'OpenFlow agent application for virtualization subsystem.',
|
|
)
|