Ray Milkey | f56bfa5 | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 1 | # app builds but is currently non functional. It needs transitive runtime |
| 2 | # dependencies. |
| 3 | |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 4 | COMPILE_DEPS = [ |
| 5 | '//lib:CORE_DEPS', |
| 6 | '//lib:org.apache.karaf.shell.console', |
| 7 | '//lib:javax.ws.rs-api', |
| 8 | '//lib:jsch', |
Jian Li | 0ff602d | 2016-04-15 10:02:18 -0700 | [diff] [blame] | 9 | '//lib:openstack4j-core', |
| 10 | '//lib:openstack4j-http-connector', |
| 11 | '//lib:openstack4j-httpclient', |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 12 | '//utils/rest:onlab-rest', |
| 13 | '//cli:onos-cli', |
| 14 | '//core/store/serializers:onos-core-serializers', |
Ray Milkey | 4e26fe9 | 2016-04-19 09:43:45 -0700 | [diff] [blame] | 15 | '//apps/openstackinterface/api:onos-apps-openstackinterface-api', |
Brian O'Connor | bffda69 | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 16 | '//apps/dhcp/api:onos-apps-dhcp-api', |
Ray Milkey | 07b80dd | 2016-04-25 09:28:43 -0700 | [diff] [blame] | 17 | '//apps/xosclient:onos-apps-xosclient', |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 18 | '//protocols/ovsdb/api:onos-ovsdb-api', |
| 19 | '//protocols/ovsdb/rfc:onos-ovsdb-rfc', |
| 20 | ] |
| 21 | |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 22 | BUNDLES = [ |
Ray Milkey | 4e26fe9 | 2016-04-19 09:43:45 -0700 | [diff] [blame] | 23 | '//apps/openstackinterface/api:onos-apps-openstackinterface-api', |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 24 | '//apps/cordvtn:onos-apps-cordvtn', |
Ray Milkey | f56bfa5 | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 25 | '//lib:openstack4j-core', |
| 26 | '//lib:openstack4j-http-connector', |
| 27 | '//lib:openstack4j-httpclient', |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 28 | ] |
| 29 | |
| 30 | EXCLUDED_BUNDLES = [ |
Ray Milkey | f56bfa5 | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 31 | '//lib:jsch', |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 32 | ] |
| 33 | |
Brian O'Connor | bffda69 | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 34 | osgi_jar_with_tests ( |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 35 | deps = COMPILE_DEPS, |
Brian O'Connor | bffda69 | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 36 | web_context = '/onos/cordvtn', |
Ray Milkey | 42028b3 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 37 | ) |
| 38 | |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 39 | onos_app ( |
| 40 | title = 'CORD VTN REST API', |
| 41 | category = 'Traffic Steering', |
| 42 | url = 'http://onosproject.org', |
| 43 | included_bundles = BUNDLES, |
| 44 | excluded_bundles = EXCLUDED_BUNDLES, |
| 45 | description = 'APIs for interacting with the CORD VTN application.', |
Ray Milkey | f56bfa5 | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 46 | required_apps = [ 'org.onosproject.xosclient', 'org.onosproject.dhcp', 'org.onosproject.ovsdb', 'org.onosproject.openstackinterface' ], |
Ray Milkey | 8a436f6 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 47 | ) |