blob: 8cd9b48e965b9e4656743b9717787eb4f5cb32d8 [file] [log] [blame]
Ray Milkey816db102018-05-30 14:16:37 -07001COMPILE_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",
Ray Milkeyd84f89b2018-08-17 14:54:17 -07008 "@org_osgi_service_cm//jar",
Ray Milkey816db102018-05-30 14:16:37 -07009]
10
11TEST_DEPS = TEST + TEST_REST + TEST_ADAPTERS + [
12 "//core/store/dist:onos-core-dist",
13 "//core/store/dist:onos-core-dist-tests",
14 "//utils/osgi:onlab-osgi-tests",
15 "//pipelines/basic:onos-pipelines-basic",
16 "@minimal_json//jar",
17]
18
19osgi_jar_with_tests(
20 name = "onos-core-net",
21 exclude_tests = [
22 "org.onosproject.net.intent.impl.compiler.AbstractLinkCollectionTest",
23 "org.onosproject.net.intent.impl.installer.AbstractIntentInstallerTest",
24 ],
Thomas Vachuskaafac1c62018-08-10 11:49:53 -070025 medium_tests = ["//core/net:src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest"],
Ray Milkey05d609a2018-08-15 10:27:58 -070026 test_deps = TEST_DEPS,
Ray Milkey816db102018-05-30 14:16:37 -070027 visibility = ["//visibility:public"],
28 deps = COMPILE_DEPS,
29)