diff --git a/src/main/java/com/hyperic/hudson/plugin/PluginImpl.java b/src/main/java/com/hyperic/hudson/plugin/PluginImpl.java deleted file mode 100644 index 30e2ca8b..00000000 --- a/src/main/java/com/hyperic/hudson/plugin/PluginImpl.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.hyperic.hudson.plugin; - -import hudson.Plugin; -import hudson.tasks.BuildStep; - -/** - * Entry point of a plugin. - * - *

- * There must be one {@link Plugin} class in each plugin. - * See javadoc of {@link Plugin} for more about what can be done on this class. - * - * @plugin - */ -public class PluginImpl extends Plugin { - public void start() throws Exception { - BuildStep.PUBLISHERS.add(S3BucketPublisher.DESCRIPTOR); - } -}