Jian Li | d486a73 | 2018-08-03 00:32:11 +0900 | [diff] [blame] | 1 | EXCLUDE_PACKAGES = "!org.apache.sshd.client,!org.apache.sshd.client.*,!org.apache.sshd.common.util.io" |
| 2 | |
| 3 | COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + REST + [ |
| 4 | "//core/store/serializers:onos-core-serializers", |
| 5 | "//apps/openstacknode/api:onos-apps-openstacknode-api", |
| 6 | "//apps/openstacknetworking/api:onos-apps-openstacknetworking-api", |
| 7 | "@sshd_core//jar", |
| 8 | ] |
| 9 | |
| 10 | EXCLUDED_BUNDLES = [ |
| 11 | "@sshd_core//jar", |
| 12 | ] |
| 13 | |
| 14 | TEST_DEPS = TEST_ADAPTERS + [ |
| 15 | "//core/api:onos-api-tests", |
| 16 | "//core/common:onos-core-common-tests", |
| 17 | ] |
| 18 | |
| 19 | osgi_jar_with_tests( |
| 20 | import_packages = EXCLUDE_PACKAGES, |
| 21 | test_deps = TEST_DEPS, |
| 22 | deps = COMPILE_DEPS, |
| 23 | ) |
| 24 | |
| 25 | onos_app( |
| 26 | app_name = "org.onosproject.openstacknetworkingui", |
| 27 | category = "GUI", |
| 28 | description = "Openstack Networking UI Service", |
| 29 | excluded_bundles = EXCLUDED_BUNDLES, |
| 30 | required_apps = [ |
| 31 | "org.onosproject.openstacknetworking", |
| 32 | ], |
| 33 | title = "Openstack Networking UI", |
| 34 | url = "http://onosproject.org", |
| 35 | ) |