blob: 07a23df24450c1e760f59c25858a69b5a3c4aab7 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + REST + CLI + [
2 "@jersey_client//jar",
3 "//incubator/api:onos-incubator-api",
4 "//core/store/serializers:onos-core-serializers",
5]
6
7osgi_jar_with_tests(
8 exclude_tests = ["org.onosproject.vpls.VplsTest"],
Ray Milkey32ce0ed2018-10-10 15:39:24 -07009 karaf_command_packages = [
10 "org.onosproject.vpls.cli",
11 "org.onosproject.vpls.cli.completer",
12 ],
Ray Milkey35ea5bf2018-07-17 15:28:44 -070013 test_deps = TEST_ADAPTERS,
14 deps = COMPILE_DEPS,
15)
16
17onos_app(
18 category = "Traffic Engineering",
19 description = "Application to create L2 broadcast network using VLAN.",
20 required_apps = ["org.onosproject.intentsynchronizer"],
21 title = "VLAN L2 Broadcast Network",
22 url = "http://onosproject.org",
23)