blob: 3fc42e7f9de369c19701edf4f1e280df51f625d8 [file] [log] [blame]
Ray Milkeyaad12322016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:org.apache.karaf.shell.console',
4 '//lib:javax.ws.rs-api',
Charles Chan41f5ec02016-06-13 18:54:31 -07005 '//lib:cord-config',
Ray Milkeyaad12322016-03-11 10:16:22 -08006 '//cli:onos-cli',
Charles Chanc91c8782016-03-30 17:54:24 -07007 '//core/store/serializers:onos-core-serializers',
Ray Milkeyaad12322016-03-11 10:16:22 -08008 '//incubator/api:onos-incubator-api',
Ray Milkeyaad12322016-03-11 10:16:22 -08009 '//utils/rest:onlab-rest',
Pier Luigi37a35432017-02-01 13:50:04 -080010 '//apps/routing-api:onos-apps-routing-api'
Ray Milkeyaad12322016-03-11 10:16:22 -080011]
12
Charles Chan41f5ec02016-06-13 18:54:31 -070013BUNDLES = [
14 '//apps/segmentrouting:onos-apps-segmentrouting',
Charles Chan60a876a2017-02-03 10:24:45 -080015 '//apps/routing-api:onos-apps-routing-api',
Charles Chan41f5ec02016-06-13 18:54:31 -070016 '//lib:cord-config'
17]
18
Ray Milkeyaad12322016-03-11 10:16:22 -080019TEST_DEPS = [
Ray Milkey6c986e52016-04-06 17:38:25 -070020 '//lib:TEST_ADAPTERS',
Ray Milkeyaad12322016-03-11 10:16:22 -080021]
22
Ray Milkey41719492016-04-11 13:20:42 -070023osgi_jar_with_tests (
Ray Milkeyaad12322016-03-11 10:16:22 -080024 deps = COMPILE_DEPS,
Ray Milkey41719492016-04-11 13:20:42 -070025 test_deps = TEST_DEPS,
Ray Milkeyaad12322016-03-11 10:16:22 -080026)
27
Ray Milkey41719492016-04-11 13:20:42 -070028onos_app (
Charles Chanb343d122016-04-12 10:33:14 -070029 title = 'Segment Routing App',
Ray Milkey41719492016-04-11 13:20:42 -070030 category = 'Traffic Steering',
31 url = 'http://onosproject.org',
Charles Chan41f5ec02016-06-13 18:54:31 -070032 included_bundles = BUNDLES,
Charles Chanb343d122016-04-12 10:33:14 -070033 description = 'Segment routing application.',
Ray Milkeyaad12322016-03-11 10:16:22 -080034)