blob: 177b95313edbdc189d3c8899fe79e3de0e35cdde [file] [log] [blame]
Lee Yongjae7c27bb42017-11-17 12:00:45 +09001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:JACKSON',
4 '//lib:concurrent-trees',
Lee Yongjae6dc7e4f2017-12-06 16:17:51 +09005 '//lib:javax.ws.rs-api',
6 '//lib:org.apache.karaf.shell.console',
7 '//cli:onos-cli',
8 '//utils/rest:onlab-rest',
Lee Yongjae7c27bb42017-11-17 12:00:45 +09009]
10
11BUNDLES = [
12 '//apps/simplefabric:onos-apps-simplefabric',
13]
14
15TEST_DEPS = [
16 '//lib:TEST_ADAPTERS',
17]
18
19osgi_jar_with_tests (
20 deps = COMPILE_DEPS,
21 test_deps = TEST_DEPS,
Lee Yongjae6dc7e4f2017-12-06 16:17:51 +090022 web_context = '/onos/v1/simplefabric',
Lee Yongjae7c27bb42017-11-17 12:00:45 +090023)
24
25onos_app (
26 title = 'SimpleFabric',
Thomas Vachuskaca0b5df2018-06-22 16:24:47 -070027 category = 'Traffic Engineering',
Lee Yongjae7c27bb42017-11-17 12:00:45 +090028 url = 'http://onosproject.org',
29 included_bundles = BUNDLES,
30 description = 'Simple Fabric application',
31 required_apps = [ 'org.onosproject.openflow-base', 'org.onosproject.lldpprovider', 'org.onosproject.hostprovider' ],
32)