Merge "Provide selected formatter to XDocLoader"
diff --git a/.buckconfig b/.buckconfig
index b69ef92..9fb438a 100644
--- a/.buckconfig
+++ b/.buckconfig
@@ -1,6 +1,7 @@
 [alias]
-  xdocs = //:xdocs
-  plugin = //:xdocs
+  xdocs = //:x-docs
+  x-docs = //:x-docs
+  plugin = //:x-docs
 
 [java]
   src_roots = java, resources
diff --git a/BUCK b/BUCK
index 339a27c..aab5a6f 100644
--- a/BUCK
+++ b/BUCK
@@ -1,7 +1,7 @@
 include_defs('//bucklets/gerrit_plugin.bucklet')
 
 gerrit_plugin(
-  name = 'xdocs',
+  name = 'x-docs',
   srcs = glob(['src/main/java/**/*.java']),
   resources = glob(['src/main/resources/**/*']),
   manifest_entries = [
@@ -17,6 +17,6 @@
 # this is required for bucklets/tools/eclipse/project.py to work
 java_library(
   name = 'classpath',
-  deps = [':xdocs__plugin'],
+  deps = [':x-docs__plugin'],
 )