mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-23 05:11:04 +02:00
27 lines
612 B
Python
27 lines
612 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//core/store/serializers:onos-core-serializers'
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
'//incubator/api:onos-incubator-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.dhcprelay',
|
|
title = 'DHCP Relay Agent App',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'DHCP Relay Agent Application.',
|
|
)
|