mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 08:51:01 +02:00
23 lines
590 B
Python
23 lines
590 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + METRICS + [
|
|
"@javax_ws_rs_api//jar",
|
|
"//incubator/api:onos-incubator-api",
|
|
"//utils/rest:onlab-rest",
|
|
]
|
|
|
|
TEST_DEPS = TEST_REST + [
|
|
"@minimal_json//jar",
|
|
"@jersey_security//jar",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
name = "onos-rest",
|
|
api_description = "ONOS Core REST API",
|
|
api_package = "org.onosproject.rest.impl",
|
|
api_title = "ONOS Core REST API",
|
|
api_version = "1.0",
|
|
exclude_tests = ["org.onosproject.rest.resources.ResourceTest"],
|
|
test_deps = TEST_DEPS,
|
|
web_context = "/onos/v1",
|
|
deps = COMPILE_DEPS,
|
|
)
|