blob: 8125580178677c805d311257c9886aab88a937c8 [file] [log] [blame]
Lee Yongjae7c27bb42017-11-17 12:00:45 +09001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:JACKSON',
4 '//lib:concurrent-trees',
5]
6
7BUNDLES = [
8 '//apps/simplefabric:onos-apps-simplefabric',
9]
10
11TEST_DEPS = [
12 '//lib:TEST_ADAPTERS',
13]
14
15osgi_jar_with_tests (
16 deps = COMPILE_DEPS,
17 test_deps = TEST_DEPS,
18)
19
20onos_app (
21 title = 'SimpleFabric',
22 category = 'Traffic Steering',
23 url = 'http://onosproject.org',
24 included_bundles = BUNDLES,
25 description = 'Simple Fabric application',
26 required_apps = [ 'org.onosproject.openflow-base', 'org.onosproject.lldpprovider', 'org.onosproject.hostprovider' ],
27)