mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
20 lines
520 B
Python
20 lines
520 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:concurrent-trees',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
'//apps/intentsync:onos-apps-intentsync',
|
|
]
|
|
|
|
osgi_jar (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'SDN-IP Reactive Routing App',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
description = 'SDN-IP reactive routing application.',
|
|
required_apps = [ 'org.onosproject.intentsynchronizer', 'org.onosproject.sdnip' ],
|
|
)
|