mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-02 23:21:22 +01:00
30 lines
715 B
Python
30 lines
715 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//cli:onos-cli',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.optical-model',
|
|
# Is there a way to change BUCK target name properly?
|
|
#name = 'onos-optical-model',
|
|
feature_coords = 'org.onosproject:onos-optical-model:%s' % (ONOS_VERSION),
|
|
title = 'Optical Network Model',
|
|
category = 'Optical',
|
|
url = 'https://wiki.onosproject.org/x/C4m',
|
|
description = 'ONOS optical information model.',
|
|
required_apps = [ ],
|
|
)
|