Updated Branches: refs/heads/master 6ba4e4261 -> 535eb5232
SUREFIRE-1034: improve doc for dependenciesToScan. Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/535eb523 Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/535eb523 Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/535eb523 Branch: refs/heads/master Commit: 535eb52329f6d57094300cd8c84a04a778e6fbb1 Parents: 6ba4e42 Author: Benson Margulies <[email protected]> Authored: Mon Sep 16 08:58:53 2013 -0400 Committer: Benson Margulies <[email protected]> Committed: Mon Sep 16 08:59:34 2013 -0400 ---------------------------------------------------------------------- .../apache/maven/plugin/surefire/AbstractSurefireMojo.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/535eb523/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java ---------------------------------------------------------------------- diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java index d8b9f9d..0fdc860 100644 --- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java +++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java @@ -660,8 +660,12 @@ public abstract class AbstractSurefireMojo protected String runOrder; /** - * List of dependencies to scan for test classes to include in the test run. Each dependency string must follow the format - * <i>groupId:artifactId</i>. For example: <i>org.acme:project-a</i> + * List of dependencies to scan for test classes to include in the test run. + * The child elements of this element must be <dependency> elements, and the + * contents of each of these elements must be a string which follows the format: + * + * <i>groupId:artifactId</i>. For example: <i>org.acme:project-a</i> or + * <i>groupId:artifactId:classifier</i>. For example: <i>org.acme:project-a:classifier</i> * * @since 2.15 */
