Ray Milkey | 42028b3 | 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:jsch', |
Jian Li | 0ff602d | 2016-04-15 10:02:18 -0700 | [diff] [blame] | 6 | '//lib:openstack4j-core', |
| 7 | '//lib:openstack4j-http-connector', |
| 8 | '//lib:openstack4j-httpclient', |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 9 | '//utils/rest:onlab-rest', |
| 10 | '//cli:onos-cli', |
| 11 | '//core/store/serializers:onos-core-serializers', |
Ray Milkey | 4e26fe9 | 2016-04-19 09:43:45 -0700 | [diff] [blame] | 12 | '//apps/openstackinterface/api:onos-apps-openstackinterface-api', |
Brian O'Connor | bffda69 | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 13 | '//apps/dhcp/api:onos-apps-dhcp-api', |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 14 | '//protocols/ovsdb/api:onos-ovsdb-api', |
| 15 | '//protocols/ovsdb/rfc:onos-ovsdb-rfc', |
| 16 | ] |
| 17 | |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 18 | BUNDLES = [ |
Ray Milkey | 4e26fe9 | 2016-04-19 09:43:45 -0700 | [diff] [blame] | 19 | '//apps/openstackinterface/api:onos-apps-openstackinterface-api', |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 20 | '//apps/cordvtn:onos-apps-cordvtn', |
| 21 | ] |
| 22 | |
| 23 | EXCLUDED_BUNDLES = [ |
| 24 | '//lib:jsch', # TODO - needs wrap |
| 25 | ] |
| 26 | |
Brian O'Connor | bffda69 | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 27 | osgi_jar_with_tests ( |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 28 | deps = COMPILE_DEPS, |
Brian O'Connor | bffda69 | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 29 | web_context = '/onos/cordvtn', |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 30 | ) |
| 31 | |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 32 | onos_app ( |
| 33 | title = 'CORD VTN REST API', |
| 34 | category = 'Traffic Steering', |
| 35 | url = 'http://onosproject.org', |
| 36 | included_bundles = BUNDLES, |
| 37 | excluded_bundles = EXCLUDED_BUNDLES, |
| 38 | description = 'APIs for interacting with the CORD VTN application.', |
| 39 | ) |