Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | SRC = 'src/main/java/org/onosproject/**/' |
Brian O'Connor | 85f28d0 | 2016-04-05 20:31:18 -0700 | [diff] [blame] | 2 | TEST = 'src/test/java/org/onosproject/**/' |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 3 | |
| 4 | COMPILE_DEPS = [ |
| 5 | '//lib:CORE_DEPS', |
| 6 | '//lib:jersey-client', |
| 7 | '//lib:javax.ws.rs-api', |
| 8 | ] |
| 9 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 10 | BUNDLES = [ |
| 11 | '//apps/openstackinterface:onos-apps-openstackinterface-api', |
| 12 | # TODO - this doesn't actually work now, have to refactor the BUCK files into each sub directory |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 13 | ] |
| 14 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 15 | osgi_jar_with_tests ( |
| 16 | name = 'onos-apps-openstackinterface-api', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 17 | srcs = glob(['api/' + SRC + '*.java']), |
| 18 | deps = COMPILE_DEPS, |
| 19 | visibility = ['PUBLIC'], |
| 20 | ) |
| 21 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 22 | osgi_jar_with_tests ( |
| 23 | deps = COMPILE_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 24 | ) |
| 25 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 26 | onos_app ( |
| 27 | title = 'Authentication App', |
| 28 | category = 'Security', |
| 29 | url = 'http://onosproject.org', |
| 30 | description = 'ONOS authentication application.', |
| 31 | included_bundles = BUNDLES, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 32 | ) |