mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 18:32:28 +02:00
15 lines
446 B
Python
15 lines
446 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + REST + CLI + [
|
|
"//core/store/serializers:onos-core-serializers",
|
|
"//apps/imr/app:onos-apps-imr-app",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
api_description = "REST API for IMR Application",
|
|
api_package = "org.onosproject.imr.rest",
|
|
api_title = "IMR REST API",
|
|
api_version = "1.0",
|
|
karaf_command_packages = ["org.onosproject.imr.cli"],
|
|
web_context = "/onos/v1/imr",
|
|
deps = COMPILE_DEPS,
|
|
)
|