Ray Milkey 6ee38b8688 Fixes for problems with starting and stopping apps in a minimal system
- Missing app dependencies
- Incorrect provider registrations
- Fatal execeptions thrown when external resources are not present

Change-Id: I3fdcf0666c88a47f399a722a9ab549d1104ff40e
2019-02-07 18:16:01 +00:00

24 lines
657 B
Python

COMPILE_DEPS = CORE_DEPS + KRYO + [
"//drivers/default:onos-drivers-default",
"//apps/flowspec-api/flowapi:onos-apps-flowspec-api-flowapi",
]
osgi_jar_with_tests(
resources = glob(["src/main/resources/**"]),
resources_root = "src/main/resources",
test_deps = TEST_ADAPTERS,
deps = COMPILE_DEPS,
)
onos_app(
app_name = "org.onosproject.drivers.flowspec",
category = "Drivers",
description = "Adds support for devices using flow specs.",
required_apps = [
"org.onosproject.drivers",
"org.onosproject.flowspec-api",
],
title = "Generic Flow Spec Drivers",
url = "http://onosproject.org",
)