Ray Milkey

BUCKify XosClient app to fix buck build

Change-Id: I5c9e6127ef3c00b79d12163fc82d4137ad00b407
...@@ -119,6 +119,7 @@ APPS = [ ...@@ -119,6 +119,7 @@ APPS = [
119 '//apps/faultmanagement:onos-apps-faultmanagement-oar', 119 '//apps/faultmanagement:onos-apps-faultmanagement-oar',
120 '//apps/openstacknode:onos-apps-openstacknode-oar', 120 '//apps/openstacknode:onos-apps-openstacknode-oar',
121 '//apps/cpman/app:onos-apps-cpman-app-oar', 121 '//apps/cpman/app:onos-apps-cpman-app-oar',
122 + '//apps/xosclient:onos-apps-xosclient-oar',
122 ] 123 ]
123 124
124 APP_JARS = [ 125 APP_JARS = [
......
...@@ -11,6 +11,7 @@ COMPILE_DEPS = [ ...@@ -11,6 +11,7 @@ COMPILE_DEPS = [
11 '//core/store/serializers:onos-core-serializers', 11 '//core/store/serializers:onos-core-serializers',
12 '//apps/openstackinterface/api:onos-apps-openstackinterface-api', 12 '//apps/openstackinterface/api:onos-apps-openstackinterface-api',
13 '//apps/dhcp/api:onos-apps-dhcp-api', 13 '//apps/dhcp/api:onos-apps-dhcp-api',
14 + '//apps/xosclient:onos-apps-xosclient',
14 '//protocols/ovsdb/api:onos-ovsdb-api', 15 '//protocols/ovsdb/api:onos-ovsdb-api',
15 '//protocols/ovsdb/rfc:onos-ovsdb-rfc', 16 '//protocols/ovsdb/rfc:onos-ovsdb-rfc',
16 ] 17 ]
...@@ -36,4 +37,5 @@ onos_app ( ...@@ -36,4 +37,5 @@ onos_app (
36 included_bundles = BUNDLES, 37 included_bundles = BUNDLES,
37 excluded_bundles = EXCLUDED_BUNDLES, 38 excluded_bundles = EXCLUDED_BUNDLES,
38 description = 'APIs for interacting with the CORD VTN application.', 39 description = 'APIs for interacting with the CORD VTN application.',
40 + required_apps = [ 'org.onosproject.xosclient' ],
39 ) 41 )
......
1 +COMPILE_DEPS = [
2 + '//lib:CORE_DEPS',
3 + '//lib:javax.ws.rs-api',
4 +]
5 +
6 +osgi_jar_with_tests (
7 + deps = COMPILE_DEPS,
8 +)
9 +
10 +onos_app (
11 + title = 'XOS Client App',
12 + category = 'Utility',
13 + url = 'http://onosproject.org',
14 + description = 'XOS client service',
15 +)