Move routing from incubator to a separate app
Change-Id: I961d10af99c572b1f8d9b3d37c6f52dd04422007
diff --git a/apps/dhcprelay/BUCK b/apps/dhcprelay/BUCK
index ab78c6d..7ff6889 100644
--- a/apps/dhcprelay/BUCK
+++ b/apps/dhcprelay/BUCK
@@ -2,14 +2,14 @@
'//lib:CORE_DEPS',
'//lib:org.apache.karaf.shell.console',
'//cli:onos-cli',
- '//incubator/api:onos-incubator-api',
- '//core/store/serializers:onos-core-serializers'
+ '//core/store/serializers:onos-core-serializers',
+ '//apps/route-service/api:onos-apps-route-service-api',
]
TEST_DEPS = [
- '//lib:TEST_ADAPTERS',
+ '//lib:TEST',
+ '//apps/route-service/api:onos-apps-route-service-api-tests',
'//core/api:onos-api-tests',
- '//incubator/api:onos-incubator-api-tests',
]
osgi_jar_with_tests (
@@ -23,4 +23,5 @@
category = 'Utility',
url = 'http://onosproject.org',
description = 'DHCP Relay Agent Application.',
+ required_apps = [ 'org.onosproject.route-service' ],
)