blob: 0513e6ffe2dfe87fd0c0ea257efb92f792ec234e [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 Vachuskab0029682017-08-23 17:55:53 -070018 title = 'OpenFlow Base Provider',
Ray Milkeyaeb00792016-04-20 16:15:21 -070019 category = 'Provider',
Thomas Vachuskac98aa2a2017-08-28 10:47:48 -070020 url = 'https://wiki.onosproject.org/display/ONOS/OpenFlow',
Thomas Vachuska8ca75a22017-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)