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", |
| 3 | "//incubator/api:onos-incubator-api", |
| 4 | "//utils/rest:onlab-rest", |
| 5 | "//incubator/net:onos-incubator-net", |
| 6 | "//incubator/store:onos-incubator-store", |
| 7 | "//core/store/serializers:onos-core-serializers", |
| 8 | ] |
| 9 | |
| 10 | TEST_DEPS = TEST + TEST_REST + TEST_ADAPTERS + [ |
| 11 | "//core/store/dist:onos-core-dist", |
| 12 | "//core/store/dist:onos-core-dist-tests", |
| 13 | "//utils/osgi:onlab-osgi-tests", |
| 14 | "//pipelines/basic:onos-pipelines-basic", |
| 15 | "@minimal_json//jar", |
| 16 | ] |
| 17 | |
| 18 | osgi_jar_with_tests( |
| 19 | name = "onos-core-net", |
| 20 | exclude_tests = [ |
| 21 | "org.onosproject.net.intent.impl.compiler.AbstractLinkCollectionTest", |
| 22 | "org.onosproject.net.intent.impl.installer.AbstractIntentInstallerTest", |
| 23 | ], |
| 24 | test_deps = TEST_DEPS, |
| 25 | visibility = ["//visibility:public"], |
| 26 | deps = COMPILE_DEPS, |
| 27 | ) |