diff --git a/src/it/projects/sources/invoker.properties b/src/it/projects/resolve-sources/invoker.properties
similarity index 96%
rename from src/it/projects/sources/invoker.properties
rename to src/it/projects/resolve-sources/invoker.properties
index 4c31605a2..55dfe7a20 100644
--- a/src/it/projects/sources/invoker.properties
+++ b/src/it/projects/resolve-sources/invoker.properties
@@ -5,9 +5,9 @@
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
-#
+#
# http://www.apache.org/licenses/LICENSE-2.0
-#
+#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.
-invoker.goals = ${project.groupId}:${project.artifactId}:${project.version}:sources
+invoker.goals = ${project.groupId}:${project.artifactId}:${project.version}:resolve-sources
diff --git a/src/it/projects/sources/pom.xml b/src/it/projects/resolve-sources/pom.xml
similarity index 97%
rename from src/it/projects/sources/pom.xml
rename to src/it/projects/resolve-sources/pom.xml
index f04fc4d88..1f3f64828 100644
--- a/src/it/projects/sources/pom.xml
+++ b/src/it/projects/resolve-sources/pom.xml
@@ -29,7 +29,7 @@
Test
- Test dependency:sources
+ Test dependency:resolve-sources
diff --git a/src/it/projects/sources/test.properties b/src/it/projects/resolve-sources/test.properties
similarity index 100%
rename from src/it/projects/sources/test.properties
rename to src/it/projects/resolve-sources/test.properties
diff --git a/src/main/java/org/apache/maven/plugins/dependency/resolvers/OldResolveDependencySourcesMojo.java b/src/main/java/org/apache/maven/plugins/dependency/resolvers/OldResolveDependencySourcesMojo.java
new file mode 100644
index 000000000..88f9ccfa8
--- /dev/null
+++ b/src/main/java/org/apache/maven/plugins/dependency/resolvers/OldResolveDependencySourcesMojo.java
@@ -0,0 +1,38 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.maven.plugins.dependency.resolvers;
+
+import org.apache.maven.plugins.annotations.LifecyclePhase;
+import org.apache.maven.plugins.annotations.Mojo;
+import org.apache.maven.plugins.annotations.ResolutionScope;
+
+/**
+ * Goal that resolves the project source dependencies from the repository.
+ *
+ * @author Brian Fox
+ * @since 2.0-alpha2
+ * @deprecated in favor of {@code resolve-sources} goal and will be removed in a future version
+ */
+@Mojo(
+ name = "sources",
+ defaultPhase = LifecyclePhase.GENERATE_SOURCES,
+ requiresDependencyResolution = ResolutionScope.TEST,
+ threadSafe = true)
+@Deprecated
+public class OldResolveDependencySourcesMojo extends ResolveDependencySourcesMojo {}
diff --git a/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependencySourcesMojo.java b/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependencySourcesMojo.java
index cc1300e77..adb87951e 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependencySourcesMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependencySourcesMojo.java
@@ -27,10 +27,10 @@
* Goal that resolves the project source dependencies from the repository.
*
* @author Brian Fox
- * @since 2.0-alpha2
+ * @since 2.0-alpha2/3.7.0
*/
@Mojo(
- name = "sources",
+ name = "resolve-sources",
defaultPhase = LifecyclePhase.GENERATE_SOURCES,
requiresDependencyResolution = ResolutionScope.TEST,
threadSafe = true)
diff --git a/src/site/apt/index.apt.vm b/src/site/apt/index.apt.vm
index c223708ba..68633b69b 100644
--- a/src/site/apt/index.apt.vm
+++ b/src/site/apt/index.apt.vm
@@ -61,7 +61,7 @@ ${project.name}
optionally transitive dependencies and copies them to a specified location, stripping the version if desired.
This goal can also be run from the command line.
- *{{{./display-ancestors-mojo.html}dependency:display-ancestors}} displays all ancestor POMs of the project.
+ *{{{./display-ancestors-mojo.html}dependency:display-ancestors}} displays all ancestor POMs of the project.
This may be useful in a continuous integration system where you want to know all parent poms of the project.
This goal can also be run from the command line.
@@ -88,9 +88,11 @@ ${project.name}
*{{{./resolve-plugins-mojo.html}dependency:resolve-plugins}} tells Maven to resolve plugins and their dependencies.
- *{{{./sources-mojo.html}dependency:sources}} tells Maven to resolve all dependencies and their source attachments,
+ *{{{./resolve-sources-mojo.html}dependency:resolve-sources}} tells Maven to resolve all dependencies and their source attachments,
and displays the version.
+ *{{{./sources-mojo.html}dependency:sources}} has been deprecated for removal in favor of {{{./resolve-sources-mojo.html}dependency:resolve-sources}}.
+
*{{{./tree-mojo.html}dependency:tree}} displays the dependency tree for this project.
*{{{./unpack-mojo.html}dependency:unpack}} like copy but unpacks.
diff --git a/src/site/apt/usage.apt.vm b/src/site/apt/usage.apt.vm
index 58abc43fd..030fa76e8 100644
--- a/src/site/apt/usage.apt.vm
+++ b/src/site/apt/usage.apt.vm
@@ -13,8 +13,8 @@
~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~~ KIND, either express or implied. See the License for the
~~ specific language governing permissions and limitations
-~~ under the License.
-
+~~ under the License.
+
------
Usage
------
@@ -25,11 +25,11 @@
------
Usage
-
+
Brief examples on how to use the dependency goals:
%{toc|fromDepth=2}
-
+
* <<>>
This goal is meant to be bound to a lifecycle phase and configured in your
@@ -37,8 +37,8 @@ Usage
in the specified location. Multiple artifacts can be defined in a single
execution. A default output directory is specified but can be overridden for
each ArtifactItem by setting the optional outputDirectory field. An
- optional new name can be set to rename or the version stripped while copying.
-
+ optional new name can be set to rename or the version stripped while copying.
+
The artifact version is optional. If not set, the plugin will attempt to resolve it from the
project dependencies and then the dependencyManagement section.
@@ -87,7 +87,7 @@ Usage
[...]
+---+
-
+
If you intend to configure this goal for execution on the command line using:
+---+
@@ -128,28 +128,28 @@ mvn dependency:copy
+---+
-
- * By default, artifacts are copied into using
+
+ * By default, artifacts are copied into using
Maven artifact file name convention ( ie ).
Use the following rules to override the default convention:
-
- * Use to override the default file name.
-
+
+ * Use to override the default file name.
+
* Use to remove from default file name.
This field is ignored when is set.
-
- * Use to override the plugin's configuration
+
+ * Use to override the plugin's configuration
per .
-
+
[]
-
+
[]
* <<>>
This goal can be bound to a lifecycle phase and configured in your <<>>.
It will resolve the dependencies (including transitive dependencies) from
- the repository and place a copy in the specified location.
+ the repository and place a copy in the specified location.
The artifacts can be placed in subfolders based on type. For example:
@@ -171,7 +171,7 @@ mvn dependency:copy
<<>> will try to find
the sources for all dependencies and copy them.
- Also included is the ability to include or exclude by type (war, jar etc), scope (runtime, test, etc), classifier (jdk14, sources, etc), groupId, artifactId, or a combination of them.
+ Also included is the ability to include or exclude by type (war, jar etc), scope (runtime, test, etc), classifier (jdk14, sources, etc), groupId, artifactId, or a combination of them.
<> As of 2.0-alpha-5, you may mix includes and excludes of the same category (ie scope). Includes are processed before excludes.
@@ -216,8 +216,8 @@ mvn dependency:copy
It will resolve the artifact from the repository and place a copy in the
specified location. Multiple artifacts can be defined in a single execution.
A default outputDirectory is specified but can be overridden for each
- ArtifactItem by setting the optional outputDirectory field.
-
+ ArtifactItem by setting the optional outputDirectory field.
+
A single artifact can be unpacked multiple times if different include/exclude parameters
are defined for each artifactItem
@@ -225,9 +225,9 @@ mvn dependency:copy
The artifact version is optional. If not set, the plugin will attempt to resolve it from the
project dependencies and then the dependencyManagement section.
-
+
Configure the plugin something like this if you intend to bind it to execute along with your build:
-
+
+---+
[...]
@@ -328,15 +328,15 @@ mvn dependency:unpack
resolve artifacts with the classifier and type. For example:
<<>> will try to find
the sources for all dependencies and unpack them.
-
+
Filters can be applied to include or exclude certain file or filesets as necessary
-
- Also included is the ability to include or exclude by type (war, jar etc), scope (runtime, test, etc), classifier (jdk14, sources, etc), groupId, artifactId, or a combination of them.
+
+ Also included is the ability to include or exclude by type (war, jar etc), scope (runtime, test, etc), classifier (jdk14, sources, etc), groupId, artifactId, or a combination of them.
<> You can mix includes and excludes of the same category (i.e. scope). Includes are processed before excludes.
See the {{{#Overwrite_Rules}Overwrite Rules}} section for rules about how overwriting is handled.
-
+
The goal can also be launched from the command line like:
<<>>
@@ -373,31 +373,31 @@ mvn dependency:unpack
Artifacts are copied or unpacked using the following rules:
* If the artifact doesn't exist in the destination, then copy/unpack it.
-
+
Otherwise:
-
+
* For copy/unpack goal only: if <<>> or <<>> is true, then it will force an overwrite.
-
+
* Releases check the <<>> value (default = false). If true, then it will force an overwrite.
* Snapshots check the <<>> value (default = false). If true, then it will force an overwrite.
-
+
* If none of the above is set to true, then it defaults to the <<>> value (default = true). This value, if true, causes
the plugin to only copy if the source is newer than the destination (or it doesn't exist in the destination). (for unpack, this checks the existence of the marker file, created in the <<>> path.
To avoid unexpected behavior after <<>>, this path should normally be contained within the <<>> hierarchy.)
-
+
Examples:
-
+
* Using the default settings (<<>> = false, <<>> = false, <<>> = true), then a release or snapshot artifact will
only over write the destination if the source is newer than the destination (or marker file if unpacking).
-
+
* If <<>> = true, then a release artifact (ie <<>>) will always overwrite.
-
+
* If <<>> = true, then a snapshot artifact (ie <<>>) will always overwrite.
-
+
* If all of the values are false, then a copy/unpack will only occur if it doesn't exist in the destination (or <<>> if unpacking).
-
-
+
+
* <<>>
@@ -419,15 +419,15 @@ mvn dependency:unpack
<<>> will try to find the
test-jar for all dependencies resolve them to the local repository.
-* <<>>
+* <<>>
- Sources is intended to be used from the command line like:
- <<>>
+ Resolve-sources is intended to be used from the command line like:
+ <<>>
This is the same as the resolve goal except it includes the source
attachments if they exist. This is useful when you want to download source
- attachments to your local repository.
-
+ attachments to your local repository.
+
You can also define the <<>> either in the pom or settings
to be a common location for all projects. This allows the system to resolve sources faster for dependencies that don't
have the sources published. The plugin will store a marker file to describe if the sources were resolved or not. By placing
@@ -452,7 +452,7 @@ mvn dependency:unpack
(or projects, in the case of a multimodule build) from the local repository.
Purges can be run with a variety of limiting parameters, including artifact
exclusions, limiting to direct dependencies only, and different levels of
- depth for deletion. By default, deleted artifacts can be re-resolved
+ depth for deletion. By default, deleted artifacts can be re-resolved
afterwards; you can disable this by specifying <<<-DreResolve=false>>>.
In its simplest form, the goal can be called like this:
@@ -468,7 +468,7 @@ mvn dependency:purge-local-repository
mvn dependency:purge-local-repository -Dexclude=org.apache.maven:maven-plugin-api
+---+
- <> The <<>> parameter is a comma-delimited list of
+ <> The <<>> parameter is a comma-delimited list of
groupId:artifactId pairs. It has a corresponding List-based parameter -
<<>> - for convenient use inside the POM.
@@ -529,7 +529,7 @@ mvn dependency:analyze
* <<>>
- This goal looks at the dependencies after final resolution and looks for mismatches in your dependencyManagement section.
+ This goal looks at the dependencies after final resolution and looks for mismatches in your dependencyManagement section.
In versions of maven prior to 2.0.6, it was possible to inherit versions that didn't match your dependencyManagement. See {{{https://issues.apache.org/jira/browse/MNG-1577}MNG-1577}} for more info.
If this goal detects issues, you should attempt to resolve the discrepancies before upgrading to 2.0.6 to avoid any surprises. This can be done by upgrading or downgrading the version in dependencyManagement to match what is actually
@@ -559,7 +559,7 @@ mvn dependency:analyze-dep-mgt
[INFO] Resolved: 2.4
[WARNING] Potential problems found in Dependency Management
+---+
-
+
* <<>>
@@ -624,15 +624,15 @@ mvn dependency:tree -DoutputFile=/path/to/file.graphml -DoutputType=graphml
* <<>>
Since: 2.0-alpha-2
-
+
This goal will output a classpath string of dependencies from the local repository to a file or log and optionally attach and deploy the file. For instance, the file would contain a classpath string like this:
+---+
/home/foo/.m2/repository/org/java/utils/util/util-1.0.jar:/home/foo/.m2/ ....
-+---+
++---+
The resulting file could then be used like this:
-
+
+---+
java -cp `cat resultFile` MyClass
+---+
@@ -650,8 +650,8 @@ mvn dependency:build-classpath -Dmdep.outputFile=cp.txt
+---+
The goal can also be bound to a lifecycle phase with the following configuration:
-
-+---+
+
++---+
[...]
@@ -682,7 +682,7 @@ mvn dependency:build-classpath -Dmdep.outputFile=cp.txt
* <<>>
- This goal lists all the repositories that this build depends upon. It shows repositories defined in your settings,
+ This goal lists all the repositories that this build depends upon. It shows repositories defined in your settings,
poms, and declared in transitive dependency poms.
@@ -692,7 +692,7 @@ mvn dependency:build-classpath -Dmdep.outputFile=cp.txt
+-----+
mvn dependency:get -DgroupId=org.apache.maven -DartifactId=maven-core -Dversion=2.2.1 -Dpackaging=jar -Dclassifier=sources -DremoteRepositories=central::default::https://repo.maven.apache.org/maven2,myrepo::::http://myrepo.com/maven2
-mvn dependency:get -DgroupId=org.apache.maven -DartifactId=maven-core -Dversion=2.2.1 -Dpackaging=jar -Dclassifier=sources -DremoteRepositories=https://repo.maven.apache.org/maven2
+mvn dependency:get -DgroupId=org.apache.maven -DartifactId=maven-core -Dversion=2.2.1 -Dpackaging=jar -Dclassifier=sources -DremoteRepositories=https://repo.maven.apache.org/maven2
mvn dependency:get -Dartifact=org.apache.maven:maven-core:2.2.1:jar:sources -DremoteRepositories=https://repo.maven.apache.org/maven2 -Ddest=/tmp/myfile.jar
+-----+
@@ -715,4 +715,4 @@ mvn dependency:analyze-exclusions
[WARNING] org.apache.maven:maven-artifact:
[WARNING] - javax.annotation:javax.annotation-api
[WARNING] - javax.activation:javax.activation-api
-+---+
\ No newline at end of file
++---+