ONOS-6932 Fixed loading of EVPN route service app dependencies.

Change-Id: I56982aaa94f724c586a561311db0fd31d782d893
This commit is contained in:
Thomas Vachuska 2017-08-16 12:43:54 -07:00 committed by Ray Milkey
parent 8c75e2817d
commit bf152d7c4b
2 changed files with 3 additions and 3 deletions

View File

@ -21,11 +21,11 @@ osgi_jar_with_tests(
) )
onos_app( onos_app(
title = 'Evpn-openflow App', title = 'EVPN OpenFlow App',
category = 'Traffic Steering', category = 'Traffic Steering',
url = 'http://onosproject.org', url = 'http://onosproject.org',
description = 'Ethernet VPN (EVPN) introduces a new model for Ethernet services delivery.' + description = 'Ethernet VPN (EVPN) introduces a new model for Ethernet services delivery.' +
'It enables integrated Layer 2 service over Ethernet with multihoming.', 'It enables integrated Layer 2 service over Ethernet with multihoming.',
required_apps = [ 'org.onosproject.route-service', 'org.onosproject.evpnrouteservice', required_apps = [ 'org.onosproject.route-service', 'org.onosproject.evpn-route-service',
'org.onosproject.gluon', 'org.onosproject.vtn' ], 'org.onosproject.gluon', 'org.onosproject.vtn' ],
) )

View File

@ -14,6 +14,6 @@ onos_app (
url = 'http://onosproject.org', url = 'http://onosproject.org',
included_bundles = BUNDLES, included_bundles = BUNDLES,
description = 'BGP protocol southbound providers.', description = 'BGP protocol southbound providers.',
required_apps = [ 'org.onosproject.evpnrouteservice' ], required_apps = [ 'org.onosproject.evpn-route-service' ],
) )