Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:org.apache.karaf.shell.console', |
| 4 | '//lib:javax.ws.rs-api', |
| 5 | '//lib:rrd4j', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 6 | '//apps/cpman/api:onos-apps-cpman-api', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 7 | '//utils/rest:onlab-rest', |
| 8 | '//cli:onos-cli', |
Brian O'Connor | 284fb69 | 2016-04-04 19:26:51 -0700 | [diff] [blame] | 9 | '//core/store/serializers:onos-core-serializers', |
| 10 | ] |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 11 | |
| 12 | TEST_DEPS = [ |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 13 | '//lib:TEST_REST', |
| 14 | '//web/api:onos-rest-tests', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 15 | ] |
| 16 | |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 17 | BUNDLES = [ |
| 18 | '//apps/cpman/api:onos-apps-cpman-api', |
| 19 | ] |
| 20 | |
| 21 | EXCLUDED_BUNDLES = [ |
| 22 | '//lib:rrd4j', # FIXME - needs wrap |
| 23 | ] |
| 24 | |
| 25 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 26 | deps = COMPILE_DEPS, |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 27 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 28 | ) |
| 29 | |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 30 | onos_app ( |
| 31 | title = 'Control Plane Manager REST API', |
| 32 | category = 'Provider', |
| 33 | url = 'http://onosproject.org', |
| 34 | description = 'APIs for interacting with the Control Plane Management application.', |
| 35 | included_bundles = BUNDLES, |
| 36 | excluded_bundles = EXCLUDED_BUNDLES, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 37 | ) |