diff --git a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/AbstractMRMMojo.java b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/AbstractMRMMojo.java index ef629f2e..b22813ed 100644 --- a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/AbstractMRMMojo.java +++ b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/AbstractMRMMojo.java @@ -16,9 +16,6 @@ * limitations under the License. */ -import java.util.List; - -import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.execution.MavenSession; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecution; @@ -43,24 +40,6 @@ public abstract class AbstractMRMMojo extends AbstractMojo { @Parameter(defaultValue = "${project}", required = true, readonly = true) protected MavenProject project; - /** - * The remote repositories. - */ - @Parameter(defaultValue = "${project.remoteArtifactRepositories}", readonly = true) - protected List remoteArtifactRepositories; - - /** - * The remote pluginRepositories. - */ - @Parameter(defaultValue = "${project.pluginArtifactRepositories}", readonly = true) - protected List remotePluginRepositories; - - /** - * The local repository. - */ - @Parameter(defaultValue = "${localRepository}", readonly = true) - protected ArtifactRepository localRepository; - /** * The Maven Session Object */