Gwtexpui is now exposed in Gerrit plugin API

Remove implicit include for gwtexpui as it is now exposed in gerrit
plugin API.

Change-Id: Ib712ebc2c2c7e9bf1acfb94234fa98a1720be09a
diff --git a/BUCK b/BUCK
index a6e1171..75587f1 100644
--- a/BUCK
+++ b/BUCK
@@ -1,16 +1,6 @@
 include_defs('//bucklets/gerrit_plugin.bucklet')
 MODULE = 'com.googlesource.gerrit.plugins.serviceuser.CreateServiceUserForm'
 
-if __standalone_mode__:
-  DEPS = ['//lib/gerrit:gwtexpui']
-else:
-  DEPS = [
-    '//gerrit-gwtexpui:Clippy',
-    '//gerrit-gwtexpui:GlobalKey',
-    '//gerrit-gwtexpui:SafeHtml',
-    '//gerrit-gwtexpui:UserAgent',
-  ]
-
 gerrit_plugin(
   name = 'serviceuser',
   srcs = glob(['src/main/java/**/*.java']),
@@ -22,7 +12,6 @@
     'Gerrit-HttpModule: com.googlesource.gerrit.plugins.serviceuser.HttpModule',
     'Gerrit-SshModule: com.googlesource.gerrit.plugins.serviceuser.SshModule',
   ],
-  provided_deps = DEPS,
 )
 
 java_library(
diff --git a/lib/gerrit/BUCK b/lib/gerrit/BUCK
index 129dd96..9e15e4d 100644
--- a/lib/gerrit/BUCK
+++ b/lib/gerrit/BUCK
@@ -4,14 +4,6 @@
 REPO = MAVEN_LOCAL
 
 maven_jar(
-  name = 'gwtexpui',
-  id = 'gwtexpui:gwtexpui:1.3.4',
-  sha1 = '202a068e9ecfef0fe11e7ed59febc5b778ff575b',
-  repository = GERRIT,
-  license = 'Apache2.0',
-)
-
-maven_jar(
   name = 'plugin-api',
   id = 'com.google.gerrit:gerrit-plugin-api:' + VER,
   attach_source = False,
diff --git a/pom.xml b/pom.xml
index 8d82b85..4a11b32 100644
--- a/pom.xml
+++ b/pom.xml
@@ -111,25 +111,5 @@
       <version>2.6.1</version>
       <scope>provided</scope>
     </dependency>
-
-    <dependency>
-      <groupId>gwtexpui</groupId>
-      <artifactId>gwtexpui</artifactId>
-      <version>1.3.4</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>gwtexpui</groupId>
-      <artifactId>gwtexpui</artifactId>
-      <version>1.3.4</version>
-      <classifier>sources</classifier>
-    </dependency>
   </dependencies>
-
-  <repositories>
-    <repository>
-      <id>gerrit-maven-repository</id>
-      <url>https://gerrit-maven.storage.googleapis.com/</url>
-    </repository>
-  </repositories>
 </project>