onos/apps/acl/BUCK
Thomas Vachuska b002968a83 Cleaning up application titles, descriptions and categories.
Change-Id: I80f9770697cbf29b6bde2b20778c341b0f403d9f
2017-08-24 10:19:33 -07:00

27 lines
529 B
Python

COMPILE_DEPS = [
'//lib:CORE_DEPS',
'//lib:JACKSON',
'//lib:KRYO',
'//lib:javax.ws.rs-api',
'//utils/rest:onlab-rest',
'//core/store/serializers:onos-core-serializers',
]
TEST_DEPS = [
'//lib:TEST_REST',
'//lib:jersey-server',
]
osgi_jar_with_tests (
deps = COMPILE_DEPS,
test_deps = TEST_DEPS,
web_context = '/onos/v1/acl',
)
onos_app (
title = 'Access Control Lists',
category = 'Security',
url = 'http://onosproject.org',
description = 'ONOS ACL application.',
)