More app BUCK file refactoring
Change-Id: I97506033c4c0cf145c558df7d4f86f37c7fe8332
diff --git a/BUCK b/BUCK
index d8a87fb..b06ce4c 100644
--- a/BUCK
+++ b/BUCK
@@ -9,14 +9,31 @@
'//utils/rest:onlab-rest',
'//cli:onos-cli',
'//core/store/serializers:onos-core-serializers',
+ '//apps/openstackinterface:onos-apps-openstackinterface-api',
'//apps/dhcp/api:onos-apps-dhcp-api',
'//protocols/ovsdb/api:onos-ovsdb-api',
'//protocols/ovsdb/rfc:onos-ovsdb-rfc',
]
+BUNDLES = [
+ '//apps/openstackinterface:onos-apps-openstackinterface-api',
+ '//apps/cordvtn:onos-apps-cordvtn',
+]
+
+EXCLUDED_BUNDLES = [
+ '//lib:jsch', # TODO - needs wrap
+]
+
osgi_jar_with_tests (
deps = COMPILE_DEPS,
web_context = '/onos/cordvtn',
)
-#FIXME need onos_app
\ No newline at end of file
+onos_app (
+ title = 'CORD VTN REST API',
+ category = 'Traffic Steering',
+ url = 'http://onosproject.org',
+ included_bundles = BUNDLES,
+ excluded_bundles = EXCLUDED_BUNDLES,
+ description = 'APIs for interacting with the CORD VTN application.',
+)