blob: 07e1fc0789e39855925443ed6e0df1ab89f8c86f [file] [log] [blame]
Ray Milkey4e5139b2016-04-27 15:50:43 -07001# app builds but is currently non functional. It needs transitive runtime
2# dependencies.
3
Ray Milkeyf80bbb22016-03-11 10:16:22 -08004COMPILE_DEPS = [
5 '//lib:CORE_DEPS',
6 '//lib:org.apache.karaf.shell.console',
7 '//lib:javax.ws.rs-api',
8 '//lib:jsch',
9 '//utils/rest:onlab-rest',
10 '//cli:onos-cli',
11 '//core/store/serializers:onos-core-serializers',
Brian O'Connore4da59d2016-04-08 00:32:18 -070012 '//apps/dhcp/api:onos-apps-dhcp-api',
Ray Milkeyd2d3e152016-04-25 09:28:43 -070013 '//apps/xosclient:onos-apps-xosclient',
Ray Milkey8dac8182016-04-28 16:44:19 -070014 '//protocols/ovsdb/api:onos-protocols-ovsdb-api',
15 '//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
Ray Milkeyf80bbb22016-03-11 10:16:22 -080016]
17
Ray Milkeyf9a76972016-04-12 09:47:12 -070018BUNDLES = [
Ray Milkeyf9a76972016-04-12 09:47:12 -070019 '//apps/cordvtn:onos-apps-cordvtn',
20]
21
22EXCLUDED_BUNDLES = [
Ray Milkey4e5139b2016-04-27 15:50:43 -070023 '//lib:jsch',
Ray Milkeyf9a76972016-04-12 09:47:12 -070024]
25
Brian O'Connore4da59d2016-04-08 00:32:18 -070026osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080027 deps = COMPILE_DEPS,
Brian O'Connore4da59d2016-04-08 00:32:18 -070028 web_context = '/onos/cordvtn',
Ray Milkeyf80bbb22016-03-11 10:16:22 -080029)
30
Ray Milkeyf9a76972016-04-12 09:47:12 -070031onos_app (
32 title = 'CORD VTN REST API',
33 category = 'Traffic Steering',
34 url = 'http://onosproject.org',
35 included_bundles = BUNDLES,
36 excluded_bundles = EXCLUDED_BUNDLES,
37 description = 'APIs for interacting with the CORD VTN application.',
Hyunsun Moone0f3e282016-05-13 18:58:35 -070038 required_apps = [ 'org.onosproject.xosclient', 'org.onosproject.dhcp', 'org.onosproject.ovsdb' ],
Ray Milkeyf9a76972016-04-12 09:47:12 -070039)