mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
Make buck app name consistent with maven app name Change-Id: I847f1d53a1c3a884ea46adf96de6828661a791d7
21 lines
499 B
Python
21 lines
499 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//utils/rest:onlab-rest',
|
|
'//lib:javax.ws.rs-api',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
osgi_jar (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.distributedprimitives',
|
|
title = 'Distributed Primitives Test App',
|
|
category = 'Test',
|
|
url = 'http://onosproject.org',
|
|
description = 'ONOS app to test distributed primitives.',
|
|
)
|