blob: 111170ddea962af6c9285a0c95acc35284319903 [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",
Ray Milkey816db102018-05-30 14:16:37 -07004 "//incubator/net:onos-incubator-net",
5 "//incubator/store:onos-incubator-store",
6 "//core/store/serializers:onos-core-serializers",
7]
8
9TEST_DEPS = TEST + TEST_REST + TEST_ADAPTERS + [
10 "//core/store/dist:onos-core-dist",
11 "//core/store/dist:onos-core-dist-tests",
12 "//utils/osgi:onlab-osgi-tests",
13 "//pipelines/basic:onos-pipelines-basic",
14 "@minimal_json//jar",
15]
16
17osgi_jar_with_tests(
18 name = "onos-core-net",
19 exclude_tests = [
20 "org.onosproject.net.intent.impl.compiler.AbstractLinkCollectionTest",
21 "org.onosproject.net.intent.impl.installer.AbstractIntentInstallerTest",
22 ],
Thomas Vachuskaafac1c62018-08-10 11:49:53 -070023 medium_tests = ["//core/net:src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest"],
Ray Milkey05d609a2018-08-15 10:27:58 -070024 test_deps = TEST_DEPS,
Ray Milkey816db102018-05-30 14:16:37 -070025 visibility = ["//visibility:public"],
26 deps = COMPILE_DEPS,
27)