blob: 20fac7ae245b8568fed588960305aa4321eb4af5 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + REST + CLI + [
2 "@jersey_client//jar",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07003 "//core/store/serializers:onos-core-serializers",
4]
5
6osgi_jar_with_tests(
DScano55a01032020-04-09 20:01:50 +02007 api_description = "REST API for Vpls ",
8 api_package = "org.onosproject.vpls.rest",
9 api_title = "VPLS REST",
10 api_version = "1.0",
Ray Milkey35ea5bf2018-07-17 15:28:44 -070011 exclude_tests = ["org.onosproject.vpls.VplsTest"],
Ray Milkey32ce0ed2018-10-10 15:39:24 -070012 karaf_command_packages = [
13 "org.onosproject.vpls.cli",
14 "org.onosproject.vpls.cli.completer",
15 ],
Ray Milkey35ea5bf2018-07-17 15:28:44 -070016 test_deps = TEST_ADAPTERS,
DScano55a01032020-04-09 20:01:50 +020017 web_context = "/onos/vpls",
Ray Milkey35ea5bf2018-07-17 15:28:44 -070018 deps = COMPILE_DEPS,
19)
20
21onos_app(
22 category = "Traffic Engineering",
23 description = "Application to create L2 broadcast network using VLAN.",
24 required_apps = ["org.onosproject.intentsynchronizer"],
25 title = "VLAN L2 Broadcast Network",
26 url = "http://onosproject.org",
27)