Ray Milkey | 816db10 | 2018-05-30 14:16:37 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = CORE_DEPS + JACKSON + METRICS + KRYO + [ |
| 2 | "//core/common:onos-core-common", |
Ray Milkey | 816db10 | 2018-05-30 14:16:37 -0700 | [diff] [blame] | 3 | "//core/store/serializers:onos-core-serializers", |
Ray Milkey | 584f54b | 2018-10-08 14:45:20 -0700 | [diff] [blame] | 4 | "//core/store/primitives:onos-core-primitives", |
Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 5 | "@org_osgi_service_cm//jar", |
Ray Milkey | 816db10 | 2018-05-30 14:16:37 -0700 | [diff] [blame] | 6 | ] |
| 7 | |
| 8 | TEST_DEPS = TEST + TEST_REST + TEST_ADAPTERS + [ |
| 9 | "//core/store/dist:onos-core-dist", |
| 10 | "//core/store/dist:onos-core-dist-tests", |
| 11 | "//utils/osgi:onlab-osgi-tests", |
| 12 | "//pipelines/basic:onos-pipelines-basic", |
| 13 | "@minimal_json//jar", |
| 14 | ] |
| 15 | |
| 16 | osgi_jar_with_tests( |
| 17 | name = "onos-core-net", |
| 18 | exclude_tests = [ |
| 19 | "org.onosproject.net.intent.impl.compiler.AbstractLinkCollectionTest", |
| 20 | "org.onosproject.net.intent.impl.installer.AbstractIntentInstallerTest", |
Carmelo Cascone | d33d3b4 | 2019-06-18 12:12:36 -0700 | [diff] [blame] | 21 | # FIXME: re-enable CoreEventDispatcherTest |
| 22 | # Failing on Jenkins after switching to Bazel remote JDK 11 |
| 23 | "org.onosproject.event.impl.CoreEventDispatcherTest", |
Ray Milkey | 816db10 | 2018-05-30 14:16:37 -0700 | [diff] [blame] | 24 | ], |
Thomas Vachuska | afac1c6 | 2018-08-10 11:49:53 -0700 | [diff] [blame] | 25 | medium_tests = ["//core/net:src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest"], |
Ray Milkey | 05d609a | 2018-08-15 10:27:58 -0700 | [diff] [blame] | 26 | test_deps = TEST_DEPS, |
Ray Milkey | 816db10 | 2018-05-30 14:16:37 -0700 | [diff] [blame] | 27 | visibility = ["//visibility:public"], |
| 28 | deps = COMPILE_DEPS, |
| 29 | ) |