Skip to content

Commit

Permalink
Remove ${localRepository} and other from plugin parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Sep 18, 2023
1 parent a89480d commit 0b7cbe0
Showing 1 changed file with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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<ArtifactRepository> remoteArtifactRepositories;

/**
* The remote pluginRepositories.
*/
@Parameter(defaultValue = "${project.pluginArtifactRepositories}", readonly = true)
protected List<ArtifactRepository> remotePluginRepositories;

/**
* The local repository.
*/
@Parameter(defaultValue = "${localRepository}", readonly = true)
protected ArtifactRepository localRepository;

/**
* The Maven Session Object
*/
Expand Down

0 comments on commit 0b7cbe0

Please sign in to comment.