-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
234 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,15 +20,20 @@ | |
|
||
import java.io.File; | ||
|
||
import org.apache.maven.artifact.handler.manager.ArtifactHandlerManager; | ||
import org.apache.maven.plugins.annotations.Parameter; | ||
import org.apache.maven.plugins.dependency.fromDependencies.AbstractDependencyFilterMojo; | ||
import org.apache.maven.plugins.dependency.utils.DependencyUtil; | ||
import org.apache.maven.plugins.dependency.utils.ResolverUtil; | ||
import org.apache.maven.project.ProjectBuilder; | ||
import org.apache.maven.shared.artifact.filter.collection.ArtifactIdFilter; | ||
import org.apache.maven.shared.artifact.filter.collection.ClassifierFilter; | ||
import org.apache.maven.shared.artifact.filter.collection.FilterArtifacts; | ||
import org.apache.maven.shared.artifact.filter.collection.GroupIdFilter; | ||
import org.apache.maven.shared.artifact.filter.collection.ScopeFilter; | ||
import org.apache.maven.shared.artifact.filter.collection.TypeFilter; | ||
import org.apache.maven.shared.transfer.dependencies.resolve.DependencyResolver; | ||
import org.apache.maven.shared.transfer.repository.RepositoryManager; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Brian Fox</a> | ||
|
@@ -60,6 +65,15 @@ public abstract class AbstractResolveMojo extends AbstractDependencyFilterMojo { | |
@Parameter(property = "excludeReactor", defaultValue = "true") | ||
protected boolean excludeReactor; | ||
|
||
protected AbstractResolveMojo( | ||
ResolverUtil resolverUtil, | ||
DependencyResolver dependencyResolver, | ||
RepositoryManager repositoryManager, | ||
ProjectBuilder projectBuilder, | ||
ArtifactHandlerManager artifactHandlerManager) { | ||
super(resolverUtil, dependencyResolver, repositoryManager, projectBuilder, artifactHandlerManager); | ||
} | ||
|
||
/** | ||
* @return {@link FilterArtifacts} | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.