Fix cpman Buck build
Change-Id: I08d6db71a4e78a5528377cc4489decaa5b763248
Showing
2 changed files
with
8 additions
and
3 deletions
... | @@ -16,6 +16,7 @@ TEST_DEPS = [ | ... | @@ -16,6 +16,7 @@ TEST_DEPS = [ |
16 | 16 | ||
17 | BUNDLES = [ | 17 | BUNDLES = [ |
18 | '//apps/cpman/api:onos-apps-cpman-api', | 18 | '//apps/cpman/api:onos-apps-cpman-api', |
19 | + ':onos-apps-cpman-app', | ||
19 | ] | 20 | ] |
20 | 21 | ||
21 | EXCLUDED_BUNDLES = [ | 22 | EXCLUDED_BUNDLES = [ |
... | @@ -25,13 +26,16 @@ EXCLUDED_BUNDLES = [ | ... | @@ -25,13 +26,16 @@ EXCLUDED_BUNDLES = [ |
25 | osgi_jar_with_tests ( | 26 | osgi_jar_with_tests ( |
26 | deps = COMPILE_DEPS, | 27 | deps = COMPILE_DEPS, |
27 | test_deps = TEST_DEPS, | 28 | test_deps = TEST_DEPS, |
29 | + web_context = '/onos/cpman', | ||
28 | ) | 30 | ) |
29 | 31 | ||
30 | onos_app ( | 32 | onos_app ( |
31 | - title = 'Control Plane Manager REST API', | 33 | + app_name = 'org.onosproject.cpman', |
32 | - category = 'Provider', | 34 | + title = 'Control Plane Manager application', |
35 | + category = 'Monitoring', | ||
33 | url = 'http://onosproject.org', | 36 | url = 'http://onosproject.org', |
34 | - description = 'APIs for interacting with the Control Plane Management application.', | 37 | + description = 'Control Plane Management application for monitoring the health of the ONOS cluster', |
35 | included_bundles = BUNDLES, | 38 | included_bundles = BUNDLES, |
36 | excluded_bundles = EXCLUDED_BUNDLES, | 39 | excluded_bundles = EXCLUDED_BUNDLES, |
40 | + required_apps = [ 'org.onosproject.openflow-message' ], | ||
37 | ) | 41 | ) | ... | ... |
... | @@ -15,6 +15,7 @@ osgi_jar_with_tests ( | ... | @@ -15,6 +15,7 @@ osgi_jar_with_tests ( |
15 | ) | 15 | ) |
16 | 16 | ||
17 | onos_app ( | 17 | onos_app ( |
18 | + app_name = 'org.onosproject.openflow-message', | ||
18 | title = 'Control Message Stats Provider', | 19 | title = 'Control Message Stats Provider', |
19 | category = 'Provider', | 20 | category = 'Provider', |
20 | url = 'http://onosproject.org', | 21 | url = 'http://onosproject.org', | ... | ... |
-
Please register or login to post a comment