buildifier formatting of bazel files
Change-Id: I8196aa52ee640d1c500307a50a0ab4921138b69b
diff --git a/apps/mcast/BUILD b/apps/mcast/BUILD
index 42bb7b9..58c22da 100644
--- a/apps/mcast/BUILD
+++ b/apps/mcast/BUILD
@@ -6,10 +6,10 @@
]
onos_app(
- title = 'Multicast traffic control',
- origin = 'ONF',
- description = 'Provides handling of multicast traffic.',
- category = 'Traffic Engineering',
- url = 'https://wiki.onosproject.org/',
+ category = "Traffic Engineering",
+ description = "Provides handling of multicast traffic.",
included_bundles = BUNDLES,
+ origin = "ONF",
+ title = "Multicast traffic control",
+ url = "https://wiki.onosproject.org/",
)
diff --git a/apps/mcast/api/BUILD b/apps/mcast/api/BUILD
index 646cfb8..e3ebbd2 100644
--- a/apps/mcast/api/BUILD
+++ b/apps/mcast/api/BUILD
@@ -1,4 +1,4 @@
osgi_jar(
- deps = CORE_DEPS,
visibility = ["//visibility:public"],
+ deps = CORE_DEPS,
)
diff --git a/apps/mcast/cli/BUILD b/apps/mcast/cli/BUILD
index 53d4c2c..b0e12b5 100644
--- a/apps/mcast/cli/BUILD
+++ b/apps/mcast/cli/BUILD
@@ -1,13 +1,13 @@
COMPILE_DEPS = CORE_DEPS + [
- '@org_apache_karaf_shell_console//jar',
- '@javax_ws_rs_api//jar',
- '//cli:onos-cli',
- '//utils/rest:onlab-rest',
- '//core/store/serializers:onos-core-serializers',
- '//apps/mcast/api:onos-apps-mcast-api',
+ "@org_apache_karaf_shell_console//jar",
+ "@javax_ws_rs_api//jar",
+ "//cli:onos-cli",
+ "//utils/rest:onlab-rest",
+ "//core/store/serializers:onos-core-serializers",
+ "//apps/mcast/api:onos-apps-mcast-api",
]
osgi_jar(
+ import_packages = "*,org.onosproject.cli.net",
deps = COMPILE_DEPS,
- import_packages = '*,org.onosproject.cli.net',
)
diff --git a/apps/mcast/impl/BUILD b/apps/mcast/impl/BUILD
index 539cac3..5735fc1 100644
--- a/apps/mcast/impl/BUILD
+++ b/apps/mcast/impl/BUILD
@@ -1,6 +1,6 @@
COMPILE_DEPS = CORE_DEPS + KRYO + [
- '//core/store/serializers:onos-core-serializers',
- '//apps/mcast/api:onos-apps-mcast-api'
+ "//core/store/serializers:onos-core-serializers",
+ "//apps/mcast/api:onos-apps-mcast-api",
]
osgi_jar(
diff --git a/apps/mcast/web/BUILD b/apps/mcast/web/BUILD
index 7835ea3..4d2a045 100644
--- a/apps/mcast/web/BUILD
+++ b/apps/mcast/web/BUILD
@@ -1,14 +1,14 @@
COMPILE_DEPS = CORE_DEPS + JACKSON + [
- '@javax_ws_rs_api//jar',
- '//utils/rest:onlab-rest',
- '//apps/mcast/api:onos-apps-mcast-api'
+ "@javax_ws_rs_api//jar",
+ "//utils/rest:onlab-rest",
+ "//apps/mcast/api:onos-apps-mcast-api",
]
osgi_jar(
+ api_description = "REST API for Multicast",
+ api_package = "org.onosproject.mcast.web",
+ api_title = "Multicast API",
+ api_version = "1.0",
+ web_context = "/onos/mcast",
deps = COMPILE_DEPS,
- web_context = '/onos/mcast',
- api_title = 'Multicast API',
- api_version = '1.0',
- api_description = 'REST API for Multicast',
- api_package = 'org.onosproject.mcast.web',
)