blob: a973d060de8dba3592bc888544837938f0bf81d7 [file] [log] [blame]
Ray Milkeyaeb00792016-04-20 16:15:21 -07001BUNDLES = [
2 '//lib:openflowj',
Ray Milkey8dac8182016-04-28 16:44:19 -07003 '//protocols/openflow/api:onos-protocols-openflow-api',
4 '//protocols/openflow/ctl:onos-protocols-openflow-ctl',
Ray Milkeyaeb00792016-04-20 16:15:21 -07005 '//providers/openflow/device:onos-providers-openflow-device',
6 '//providers/openflow/packet:onos-providers-openflow-packet',
7 '//providers/openflow/flow:onos-providers-openflow-flow',
8 '//providers/openflow/group:onos-providers-openflow-group',
9 '//providers/openflow/meter:onos-providers-openflow-meter',
10]
11
Yuta HIGUCHIc7f35cf2016-08-03 13:57:30 -070012APPS = [
13 'org.onosproject.optical-model',
14]
15
Ray Milkeyaeb00792016-04-20 16:15:21 -070016onos_app (
Brian O'Connorbe27bb32016-04-29 16:55:44 -070017 app_name = 'org.onosproject.openflow-base',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070018 title = 'OpenFlow Base Provider',
Ray Milkeyaeb00792016-04-20 16:15:21 -070019 category = 'Provider',
20 url = 'http://onosproject.org',
Thomas Vachuska6655bee2017-08-24 16:12:59 -070021 description = 'Provides the base suite of device, flow and packet providers that rely on the ' +
22 'OpenFlow protocol to interact with network devices.',
Ray Milkeyaeb00792016-04-20 16:15:21 -070023 included_bundles = BUNDLES,
Yuta HIGUCHIc7f35cf2016-08-03 13:57:30 -070024 required_apps = APPS,
Ray Milkeyaeb00792016-04-20 16:15:21 -070025)