blob: 6e2c44ab74935dd9383c57fcef0ddca88d765537 [file] [log] [blame]
Sean Condon0e89bda2017-03-21 14:23:19 +00001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:javax.ws.rs-api',
4 '//utils/rest:onlab-rest',
5 '//lib:JACKSON',
6 '//cli:onos-cli',
7 '//lib:org.apache.karaf.shell.console',
8 '//incubator/api:onos-incubator-api'
9]
10
11TEST_DEPS = [
12 '//lib:TEST_REST',
13 '//utils/osgi:onlab-osgi-tests',
14 '//web/api:onos-rest-tests',
15]
16
17osgi_jar_with_tests (
18 deps = COMPILE_DEPS,
19 test_deps = TEST_DEPS,
20 web_context = '/onos/cfm',
Sean Condon081290d2017-11-02 13:15:08 +000021 api_title = 'L2 Monitoring CFM',
22 api_version = '1.0',
23 api_description = 'REST API for L2 Monitoring CFM',
24 api_package = 'org.onosproject.soam.rest',
Sean Condon0e89bda2017-03-21 14:23:19 +000025)
26
27onos_app (
28 title = 'Layer 2 Monitoring CFM Application',
Thomas Vachuska0e11dcb2017-12-13 16:57:14 -080029 category = 'Utility',
Sean Condon0e89bda2017-03-21 14:23:19 +000030 url = 'http://onosproject.org',
31 description = 'Layer 2 Monitoring Connectivity Fault Management App',
32)