blob: 3c17dd0d57c78d36f9482e355dda9ab0f79ca243 [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",
8]
9
10TEST_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
18osgi_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 ],
Thomas Vachuskaafac1c62018-08-10 11:49:53 -070024 medium_tests = ["//core/net:src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest"],
Ray Milkey05d609a2018-08-15 10:27:58 -070025 test_deps = TEST_DEPS,
Ray Milkey816db102018-05-30 14:16:37 -070026 visibility = ["//visibility:public"],
27 deps = COMPILE_DEPS,
28)