blob: d86f380e4285b19e6d3aa966ef89391fd125ac71 [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"],
Ray Milkeyc2b7b962018-10-02 15:00:02 -070016 karaf_command_packages = [
17 "org.onosproject.cfm.cli",
18 "org.onosproject.cfm.cli.completer",
19 ],
Ray Milkey257eb6d2018-07-17 09:41:00 -070020 test_deps = TEST_DEPS,
21 web_context = "/onos/cfm",
22 deps = COMPILE_DEPS,
23)