mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-20 11:52:12 +02:00
33 lines
783 B
Python
33 lines
783 B
Python
SRC = 'src/main/java/org/onosproject/**/'
|
|
TEST = 'src/test/java/org/onosproject/**/'
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:jersey-client',
|
|
'//lib:javax.ws.rs-api',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/openstackinterface:onos-apps-openstackinterface-api',
|
|
# TODO - this doesn't actually work now, have to refactor the BUCK files into each sub directory
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-apps-openstackinterface-api',
|
|
srcs = glob(['api/' + SRC + '*.java']),
|
|
deps = COMPILE_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Authentication App',
|
|
category = 'Security',
|
|
url = 'http://onosproject.org',
|
|
description = 'ONOS authentication application.',
|
|
included_bundles = BUNDLES,
|
|
)
|