Merge branch 'stable-2.14'

* stable-2.14:
  Remove classpath target
  Add eclipse-out to .gitignore

Change-Id: I2575b20b31c58d5cd674789448006fa32d797c5f
diff --git a/.gitignore b/.gitignore
index a25a805..56abc1f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
 /.settings
 /.primary_build_tool
 /bazel-*
+/eclipse-out
diff --git a/WORKSPACE b/WORKSPACE
index c5fb589..334b195 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -3,7 +3,7 @@
 load("//:bazlets.bzl", "load_bazlets")
 
 load_bazlets(
-    commit = "87908ae95402aa78dcb29075a7822509c9d04af6",
+    commit = "f2e78d4042490178a9cc1da59fc590dec55278cb",
     #    local_path = "/home/<user>/projects/bazlets",
 )
 
diff --git a/tools/eclipse/BUILD b/tools/eclipse/BUILD
index c335759..5b770f5 100644
--- a/tools/eclipse/BUILD
+++ b/tools/eclipse/BUILD
@@ -1,16 +1,9 @@
 load("//tools/bzl:plugin.bzl", "PLUGIN_DEPS")
 load("//tools/bzl:classpath.bzl", "classpath_collector")
 
-CP_DEPS = PLUGIN_DEPS + [
-    "//:admin-console__plugin",
-]
-
-java_library(
-    name = "classpath",
-    runtime_deps = CP_DEPS,
-)
-
 classpath_collector(
     name = "main_classpath_collect",
-    deps = CP_DEPS,
+    deps = PLUGIN_DEPS + [
+        "//:admin-console__plugin",
+    ],
 )