blob: c28e664fb9c1551d8f3fcce838e96c5ee9a14f03 [file] [log] [blame]
Ray Milkey257eb6d2018-07-17 09:41:00 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + REST + [
2 "//apps/cfm/api:onos-apps-cfm-api",
3]
4
5TEST_DEPS = TEST_REST + [
6 "//utils/osgi:onlab-osgi-tests",
7 "//web/api:onos-rest-tests",
8]
9
10osgi_jar_with_tests(
11 api_description = "REST API for L2 Monitoring CFM",
12 api_package = "org.onosproject.soam.rest",
13 api_title = "L2 Monitoring CFM",
14 api_version = "1.0",
15 exclude_tests = ["org/onosproject/cfm/impl/CfmResourceTest"],
16 test_deps = TEST_DEPS,
17 web_context = "/onos/cfm",
18 deps = COMPILE_DEPS,
19)