blob: 560d7b533ee67b44aed978eba706574e9450f702 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//drivers/utilities:onos-drivers-utilities',
Ray Milkeyaeb00792016-04-20 16:15:21 -07004 '//protocols/netconf/api:onos-protocols-netconf-api',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08005]
6
Ray Milkeye022ef62016-06-08 15:17:19 -07007TEST_DEPS = [
8 '//lib:TEST_ADAPTERS',
David K. Bainbridge1a10d622018-05-07 12:32:27 -07009 '//lib:slf4j-jdk14',
Ray Milkeye022ef62016-06-08 15:17:19 -070010 '//core/api:onos-api-tests',
11]
12
Jonathan Hartbbac3542016-08-02 09:01:19 -070013BUNDLES = [
14 ':onos-drivers-netconf',
15 '//drivers/utilities:onos-drivers-utilities',
16]
17
Ray Milkey61403ed2016-04-28 12:27:51 -070018osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080019 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070020 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080021 resources_root = 'src/main/resources',
22 resources = glob(['src/main/resources/**']),
23)
Ray Milkey61403ed2016-04-28 12:27:51 -070024
25onos_app (
Jonathan Hartbbac3542016-08-02 09:01:19 -070026 app_name = 'org.onosproject.drivers.netconf',
Thomas Vachuskab0029682017-08-23 17:55:53 -070027 title = 'Generic NETCONF Drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070028 category = 'Drivers',
29 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070030 description = 'Adds support for devices using NETCONF.',
Jonathan Hartbbac3542016-08-02 09:01:19 -070031 included_bundles = BUNDLES,
32 required_apps = [ 'org.onosproject.netconf' ],
Ray Milkey61403ed2016-04-28 12:27:51 -070033)