Jian Li | fb42199 | 2018-09-11 15:01:42 +0900 | [diff] [blame] | 1 | BUNDLES = [ |
| 2 | "//apps/openstacknetworkingui:onos-apps-openstacknetworkingui", |
| 3 | "@sshd_core//jar", |
| 4 | ] |
Jian Li | d486a73 | 2018-08-03 00:32:11 +0900 | [diff] [blame] | 5 | |
| 6 | COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + REST + [ |
| 7 | "//core/store/serializers:onos-core-serializers", |
| 8 | "//apps/openstacknode/api:onos-apps-openstacknode-api", |
boyoung2 | 7b44412 | 2018-09-01 17:28:13 +0900 | [diff] [blame] | 9 | "//apps/openstacktelemetry/api:onos-apps-openstacktelemetry-api", |
Jian Li | d486a73 | 2018-08-03 00:32:11 +0900 | [diff] [blame] | 10 | "//apps/openstacknetworking/api:onos-apps-openstacknetworking-api", |
Daniel Park | 4e037f5 | 2018-09-20 18:04:18 +0900 | [diff] [blame] | 11 | "//apps/openstacknetworking/app:onos-apps-openstacknetworking-app", |
Jian Li | d486a73 | 2018-08-03 00:32:11 +0900 | [diff] [blame] | 12 | "@sshd_core//jar", |
| 13 | ] |
| 14 | |
| 15 | EXCLUDED_BUNDLES = [ |
| 16 | "@sshd_core//jar", |
| 17 | ] |
| 18 | |
| 19 | TEST_DEPS = TEST_ADAPTERS + [ |
| 20 | "//core/api:onos-api-tests", |
| 21 | "//core/common:onos-core-common-tests", |
| 22 | ] |
| 23 | |
| 24 | osgi_jar_with_tests( |
Jian Li | d486a73 | 2018-08-03 00:32:11 +0900 | [diff] [blame] | 25 | test_deps = TEST_DEPS, |
| 26 | deps = COMPILE_DEPS, |
| 27 | ) |
| 28 | |
| 29 | onos_app( |
| 30 | app_name = "org.onosproject.openstacknetworkingui", |
| 31 | category = "GUI", |
| 32 | description = "Openstack Networking UI Service", |
| 33 | excluded_bundles = EXCLUDED_BUNDLES, |
Jian Li | fb42199 | 2018-09-11 15:01:42 +0900 | [diff] [blame] | 34 | included_bundles = BUNDLES, |
Jian Li | d486a73 | 2018-08-03 00:32:11 +0900 | [diff] [blame] | 35 | required_apps = [ |
| 36 | "org.onosproject.openstacknetworking", |
| 37 | ], |
| 38 | title = "Openstack Networking UI", |
| 39 | url = "http://onosproject.org", |
| 40 | ) |