Format build files with buildifier

Change-Id: I50ea211a2d61613a0d3cbacc47f689dce9e6459f
diff --git a/BUILD b/BUILD
index 2fe4991..124eb10 100644
--- a/BUILD
+++ b/BUILD
@@ -9,7 +9,6 @@
 gerrit_plugin(
     name = "its-rtc",
     srcs = glob(["src/main/java/**/*.java"]),
-    resources = glob(["src/main/resources/**/*"]),
     manifest_entries = [
         "Gerrit-PluginName: its-rtc",
         "Gerrit-Module: com.googlesource.gerrit.plugins.its.rtc.RTCModule",
@@ -18,11 +17,12 @@
         "Implementation-Title: Plugin its-rtc",
         "Implementation-URL: http://www.gerritforge.com",
     ],
+    resources = glob(["src/main/resources/**/*"]),
     deps = [
         "//plugins/its-base",
-        "@commons_logging//jar",
-        "@commons_io//jar",
         "@commons_codec//jar:neverlink",
+        "@commons_io//jar",
+        "@commons_logging//jar",
     ],
 )