blob: 50e0a3ffff0eadca2800d5f4ea8bd3462676f8dd [file] [log] [blame]
Ray Milkey816db102018-05-30 14:16:37 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + METRICS + KRYO + [
2 "//core/common:onos-core-common",
Ray Milkey816db102018-05-30 14:16:37 -07003 "//utils/rest:onlab-rest",
Ray Milkey816db102018-05-30 14:16:37 -07004 "//core/store/serializers:onos-core-serializers",
Ray Milkey584f54b2018-10-08 14:45:20 -07005 "//core/store/primitives:onos-core-primitives",
arjunek1992f6353d42018-11-20 08:56:29 -05006 "//cli:onos-cli",
Ray Milkeyd84f89b2018-08-17 14:54:17 -07007 "@org_osgi_service_cm//jar",
Ray Milkey816db102018-05-30 14:16:37 -07008]
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)