Removing BUCK files and other Buck-related auxiliaries.
Change-Id: I23691380efcd9bce4906695605214ed59ada0e87
diff --git a/BUCK b/BUCK
deleted file mode 100644
index 1b3990f..0000000
--- a/BUCK
+++ /dev/null
@@ -1,13 +0,0 @@
-BUNDLES = [
- '//apps/segmentrouting/app:onos-apps-segmentrouting-app',
- '//apps/segmentrouting/web:onos-apps-segmentrouting-web',
-]
-
-onos_app (
- title = 'Segment Routing',
- category = 'Traffic Engineering',
- url = 'http://onosproject.org',
- included_bundles = BUNDLES,
- description = 'Segment routing application.',
- required_apps = [ 'org.onosproject.route-service', 'org.onosproject.mcast' ],
-)
diff --git a/app/BUCK b/app/BUCK
deleted file mode 100644
index 7deda13..0000000
--- a/app/BUCK
+++ /dev/null
@@ -1,25 +0,0 @@
-COMPILE_DEPS = [
- '//lib:CORE_DEPS',
- '//lib:JACKSON',
- '//lib:KRYO',
- '//lib:org.apache.karaf.shell.console',
- '//cli:onos-cli',
- '//core/common:onos-core-common',
- '//core/store/serializers:onos-core-serializers',
- '//incubator/api:onos-incubator-api',
- '//apps/route-service/api:onos-apps-route-service-api',
- '//apps/mcast/api:onos-apps-mcast-api',
- '//apps/mcast/cli:onos-apps-mcast-cli',
-]
-
-TEST_DEPS = [
- '//lib:TEST_ADAPTERS',
- '//core/net:onos-core-net',
- '//incubator/api:onos-incubator-api-tests',
- '//apps/route-service/api:onos-apps-route-service-api-tests',
-]
-
-osgi_jar_with_tests (
- deps = COMPILE_DEPS,
- test_deps = TEST_DEPS,
-)
diff --git a/web/BUCK b/web/BUCK
deleted file mode 100644
index 9706438..0000000
--- a/web/BUCK
+++ /dev/null
@@ -1,16 +0,0 @@
-COMPILE_DEPS = [
- '//lib:CORE_DEPS',
- '//lib:JACKSON',
- '//lib:javax.ws.rs-api',
- '//utils/rest:onlab-rest',
- '//apps/segmentrouting/app:onos-apps-segmentrouting-app',
-]
-
-osgi_jar_with_tests (
- deps = COMPILE_DEPS,
- web_context = '/onos/segmentrouting',
- api_title = 'Segment Routing REST API',
- api_version = '1.0',
- api_description = 'REST API for Segment Routing Application',
- api_package = 'org.onosproject.segmentrouting.web',
-)