Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/vpls/BUILD b/apps/vpls/BUILD
new file mode 100644
index 0000000..5e90e5b
--- /dev/null
+++ b/apps/vpls/BUILD
@@ -0,0 +1,19 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + REST + CLI + [
+ "@jersey_client//jar",
+ "//incubator/api:onos-incubator-api",
+ "//core/store/serializers:onos-core-serializers",
+]
+
+osgi_jar_with_tests(
+ exclude_tests = ["org.onosproject.vpls.VplsTest"],
+ test_deps = TEST_ADAPTERS,
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Traffic Engineering",
+ description = "Application to create L2 broadcast network using VLAN.",
+ required_apps = ["org.onosproject.intentsynchronizer"],
+ title = "VLAN L2 Broadcast Network",
+ url = "http://onosproject.org",
+)