diff --git a/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/pom.xml b/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/pom.xml index 3904e2b13a..6e1ba210f0 100644 --- a/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/pom.xml +++ b/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/pom.xml @@ -41,8 +41,6 @@ limitations under the License. - ${package}.Module - ${Implementation-Vendor} ${Implementation-Url} diff --git a/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/src/main/java/Module.java b/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/src/main/java/MyExtension.java similarity index 72% rename from gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/src/main/java/Module.java rename to gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/src/main/java/MyExtension.java index d42545a76d..ebdbb2651a 100644 --- a/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/src/main/java/Module.java +++ b/gerrit-plugin-gwt-archetype/src/main/resources/archetype-resources/src/main/java/MyExtension.java @@ -14,13 +14,12 @@ package ${package}; -import com.google.inject.AbstractModule; -import com.google.gerrit.extensions.webui.WebUiPlugin; import com.google.gerrit.extensions.webui.GwtPlugin; +import com.google.gerrit.extensions.annotations.Listen; -class Module extends AbstractModule { - @Override - protected void configure() { - bind(WebUiPlugin.class).toInstance(new GwtPlugin("hello_gwt_plugins")); +@Listen +public class MyExtension extends GwtPlugin { + public MyExtension() { + super("hello_gwt_plugins"); } }