Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MDEP-914] Fix link in collect goal description #380

Merged
merged 1 commit into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,17 @@
* This is very useful when full dependency resolution might fail due to projects which haven't been built yet.
* </p>
* <p>
* It is identical to {@link ResolveDependenciesMojo} except for using the requiresDependencyCollection annotation
* attribute instead of requiresDependencyResolution.
* It is identical to <a href="https://maven.apache.org/plugins/maven-dependency-plugin/resolve-mojo.html">resolve</a>
* except for using the requiresDependencyCollection annotation attribute instead of requiresDependencyResolution.
* </p>
*
* @author <a href="mailto:[email protected]">Eric Pabst</a>
* @author <a href="mailto:[email protected]">Brian Fox</a>
* @since 3.0
*/
// CHECKSTYLE_OFF: LineLength
@Mojo(
name = "collect",
requiresDependencyCollection = ResolutionScope.TEST,
defaultPhase = LifecyclePhase.GENERATE_SOURCES,
threadSafe = true)
// CHECKSTYLE_ON: LineLength
public class CollectDependenciesMojo extends ResolveDependenciesMojo {}
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,11 @@
* @author <a href="mailto:[email protected]">Brian Fox</a>
* @since 2.0
*/
// CHECKSTYLE_OFF: LineLength
@Mojo(
name = "resolve",
requiresDependencyResolution = ResolutionScope.TEST,
defaultPhase = LifecyclePhase.GENERATE_SOURCES,
threadSafe = true)
// CHECKSTYLE_ON: LineLength
public class ResolveDependenciesMojo extends AbstractResolveMojo {

@Parameter(property = "outputEncoding", defaultValue = "${project.reporting.outputEncoding}")
Expand Down