adds working buck file to BGPCEP provider
Change-Id: Ia4a9ee37ed57ec0862501ae9b6f622f225d764fc
diff --git a/apps/pce/app/BUCK b/apps/pce/app/BUCK
new file mode 100644
index 0000000..f25f607
--- /dev/null
+++ b/apps/pce/app/BUCK
@@ -0,0 +1,30 @@
+COMPILE_DEPS = [
+ '//lib:CORE_DEPS',
+ '//lib:COMPILE',
+ '//lib:org.osgi.compendium',
+ '//cli:onos-cli',
+ '//core/store/serializers:onos-core-serializers',
+ '//utils/rest:onlab-rest',
+ '//incubator/api:onos-incubator-api',
+ '//apps/pcep-api:onos-apps-pcep-api',
+ '//utils/misc:onlab-misc',
+ '//core/api:onos-api',
+ '//lib:org.apache.karaf.shell.console',
+ '//lib:javax.ws.rs-api',
+]
+
+TEST_DEPS = [
+ '//lib:TEST_REST',
+]
+
+osgi_jar_with_tests (
+ deps = COMPILE_DEPS,
+ test_deps = TEST_DEPS
+)
+
+onos_app (
+ title = 'PCE App',
+ category = 'default',
+ url = 'http://onosproject.org',
+ description = 'PCE as centeral controller App.',
+)
\ No newline at end of file
diff --git a/apps/pce/pceweb/BUCK b/apps/pce/pceweb/BUCK
new file mode 100644
index 0000000..d008201
--- /dev/null
+++ b/apps/pce/pceweb/BUCK
@@ -0,0 +1,19 @@
+COMPILE_DEPS = [
+ '//lib:CORE_DEPS',
+ '//apps/pce/app:onos-apps-pce-app',
+ '//cli:onos-cli',
+ '//lib:org.apache.karaf.shell.console',
+ '//core/api:onos-api',
+ '//incubator/api:onos-incubator-api',
+]
+
+osgi_jar_with_tests (
+ deps = COMPILE_DEPS,
+)
+
+onos_app (
+ title = 'PCE web application',
+ category = 'Utility',
+ url = 'http://onosproject.org',
+ description = 'Allows the user to visualize different types of paths between network entities',
+)