blob: 91ee0224a2b8ea699f3371e9fb36af5dc145b79a [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 ],
24 test_deps = TEST_DEPS,
25 visibility = ["//visibility:public"],
26 deps = COMPILE_DEPS,
27)