mirror of https://github.com/apache/maven.git
document addition resolution groups, fix javadoc, upgrade parent
This commit is contained in:
parent
657c4e9be5
commit
e4b2fc737f
|
@ -64,3 +64,27 @@ Maven Core Integration Tests Bootstrap
|
||||||
* Group 7 Dependencies
|
* Group 7 Dependencies
|
||||||
|
|
||||||
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-7/target/resolve.txt}
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-7/target/resolve.txt}
|
||||||
|
|
||||||
|
* Group 8 Dependencies
|
||||||
|
|
||||||
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-8/target/resolve.txt}
|
||||||
|
|
||||||
|
* Group 9 Dependencies
|
||||||
|
|
||||||
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-9/target/resolve.txt}
|
||||||
|
|
||||||
|
* Group 10 Dependencies
|
||||||
|
|
||||||
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-10/target/resolve.txt}
|
||||||
|
|
||||||
|
* Group 11 Dependencies
|
||||||
|
|
||||||
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-11/target/resolve.txt}
|
||||||
|
|
||||||
|
* Group 12 Dependencies
|
||||||
|
|
||||||
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-12/target/resolve.txt}
|
||||||
|
|
||||||
|
* Group 13 Dependencies
|
||||||
|
|
||||||
|
%{snippet|file=${project.build.directory}/test-classes/bootstrap/group-13/target/resolve.txt}
|
||||||
|
|
|
@ -104,6 +104,11 @@ under the License.
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.1.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-wrapper-plugin</artifactId>
|
||||||
|
<version>3.1.0</version>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
|
|
@ -21,7 +21,6 @@ package org.apache.maven.plugin.coreit;
|
||||||
|
|
||||||
import org.apache.maven.plugin.AbstractMojo;
|
import org.apache.maven.plugin.AbstractMojo;
|
||||||
import org.apache.maven.plugin.MojoExecutionException;
|
import org.apache.maven.plugin.MojoExecutionException;
|
||||||
import org.apache.maven.plugin.MojoFailureException;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
|
@ -75,7 +74,7 @@ public class CheckThreadSafetyMojo
|
||||||
/**
|
/**
|
||||||
* Runs this mojo.
|
* Runs this mojo.
|
||||||
*
|
*
|
||||||
* @throws MojoFailureException If the output file could not be created.
|
* @throws MojoExecutionException If the output file could not be created.
|
||||||
*/
|
*/
|
||||||
public void execute()
|
public void execute()
|
||||||
throws MojoExecutionException
|
throws MojoExecutionException
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.apache.maven.artifact.resolver.ArtifactResolver;
|
||||||
import org.apache.maven.model.Dependency;
|
import org.apache.maven.model.Dependency;
|
||||||
import org.apache.maven.plugin.AbstractMojo;
|
import org.apache.maven.plugin.AbstractMojo;
|
||||||
import org.apache.maven.plugin.MojoExecutionException;
|
import org.apache.maven.plugin.MojoExecutionException;
|
||||||
import org.apache.maven.plugin.MojoFailureException;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
|
@ -94,7 +93,7 @@ public class ResolveMojo
|
||||||
/**
|
/**
|
||||||
* Runs this mojo.
|
* Runs this mojo.
|
||||||
*
|
*
|
||||||
* @throws MojoFailureException If the artifact could not be resolved
|
* @throws MojoExecutionException If the artifact could not be resolved
|
||||||
*/
|
*/
|
||||||
public void execute()
|
public void execute()
|
||||||
throws MojoExecutionException
|
throws MojoExecutionException
|
||||||
|
|
|
@ -36,7 +36,7 @@ import java.util.Properties;
|
||||||
* value but can also be a collection/array or a bean-like object (from the Maven model). For example, the expression
|
* value but can also be a collection/array or a bean-like object (from the Maven model). For example, the expression
|
||||||
* "project/dependencies/0" would extract the first project dependency. In more detail, this example expression could
|
* "project/dependencies/0" would extract the first project dependency. In more detail, this example expression could
|
||||||
* output the following keys to the properties file:
|
* output the following keys to the properties file:
|
||||||
* <p/>
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* project.dependencies.0.groupId = org.apache.maven
|
* project.dependencies.0.groupId = org.apache.maven
|
||||||
* project.dependencies.0.artifactId = maven-project
|
* project.dependencies.0.artifactId = maven-project
|
||||||
|
@ -49,7 +49,7 @@ import java.util.Properties;
|
||||||
* project.dependencies.0.exclusions.1.groupId = plexus
|
* project.dependencies.0.exclusions.1.groupId = plexus
|
||||||
* project.dependencies.0.exclusions.1.artifactId = plexus-container-default
|
* project.dependencies.0.exclusions.1.artifactId = plexus-container-default
|
||||||
* </pre>
|
* </pre>
|
||||||
* <p/>
|
*
|
||||||
* Expressions that reference non-existing objects or use invalid collection/array indices silently resolve to
|
* Expressions that reference non-existing objects or use invalid collection/array indices silently resolve to
|
||||||
* <code>null</code>. For collections and arrays, the special index "*" can be used to iterate all elements.
|
* <code>null</code>. For collections and arrays, the special index "*" can be used to iterate all elements.
|
||||||
*
|
*
|
||||||
|
|
|
@ -29,7 +29,6 @@ import org.apache.maven.artifact.resolver.ArtifactResolver;
|
||||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||||
import org.apache.maven.plugin.AbstractMojo;
|
import org.apache.maven.plugin.AbstractMojo;
|
||||||
import org.apache.maven.plugin.MojoExecutionException;
|
import org.apache.maven.plugin.MojoExecutionException;
|
||||||
import org.apache.maven.plugin.MojoFailureException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolves an artifact and has an (unused) dependency on log4j.
|
* Resolves an artifact and has an (unused) dependency on log4j.
|
||||||
|
@ -86,7 +85,7 @@ public class ItMojo
|
||||||
* Runs this mojo.
|
* Runs this mojo.
|
||||||
*
|
*
|
||||||
* @throws MojoExecutionException If the output file could not be created.
|
* @throws MojoExecutionException If the output file could not be created.
|
||||||
* @throws MojoFailureException If the output file has not been set.
|
* or if the output file has not been set.
|
||||||
*/
|
*/
|
||||||
public void execute()
|
public void execute()
|
||||||
throws MojoExecutionException
|
throws MojoExecutionException
|
||||||
|
|
|
@ -21,7 +21,6 @@ package org.apache.maven.plugin.coreit;
|
||||||
|
|
||||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||||
import org.apache.maven.plugin.MojoExecutionException;
|
import org.apache.maven.plugin.MojoExecutionException;
|
||||||
import org.apache.maven.plugin.MojoFailureException;
|
|
||||||
import org.apache.maven.project.MavenProject;
|
import org.apache.maven.project.MavenProject;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -63,7 +62,7 @@ public class BuildLocalPomMojo
|
||||||
/**
|
/**
|
||||||
* Runs this mojo.
|
* Runs this mojo.
|
||||||
*
|
*
|
||||||
* @throws MojoFailureException If the artifact file has not been set.
|
* @throws MojoExecutionException If the artifact file has not been set.
|
||||||
*/
|
*/
|
||||||
public void execute()
|
public void execute()
|
||||||
throws MojoExecutionException
|
throws MojoExecutionException
|
||||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.maven.artifact.factory.ArtifactFactory;
|
||||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||||
import org.apache.maven.model.Dependency;
|
import org.apache.maven.model.Dependency;
|
||||||
import org.apache.maven.plugin.MojoExecutionException;
|
import org.apache.maven.plugin.MojoExecutionException;
|
||||||
import org.apache.maven.plugin.MojoFailureException;
|
|
||||||
import org.apache.maven.project.MavenProject;
|
import org.apache.maven.project.MavenProject;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -84,7 +83,7 @@ public class BuildRemotePomMojo
|
||||||
/**
|
/**
|
||||||
* Runs this mojo.
|
* Runs this mojo.
|
||||||
*
|
*
|
||||||
* @throws MojoFailureException If the artifact file has not been set.
|
* @throws MojoExecutionException If the artifact file has not been set.
|
||||||
*/
|
*/
|
||||||
public void execute()
|
public void execute()
|
||||||
throws MojoExecutionException
|
throws MojoExecutionException
|
||||||
|
|
15
its/pom.xml
15
its/pom.xml
|
@ -25,7 +25,7 @@ under the License.
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.maven</groupId>
|
<groupId>org.apache.maven</groupId>
|
||||||
<artifactId>maven-parent</artifactId>
|
<artifactId>maven-parent</artifactId>
|
||||||
<version>33</version>
|
<version>34</version>
|
||||||
<relativePath>../pom/maven/pom.xml</relativePath>
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -142,6 +142,19 @@ under the License.
|
||||||
</environmentVariables>
|
</environmentVariables>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<tagletArtifacts>
|
||||||
|
<tagletArtifact>
|
||||||
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||||
|
<artifactId>maven-plugin-tools-javadoc</artifactId>
|
||||||
|
<version>3.5.2</version>
|
||||||
|
</tagletArtifact>
|
||||||
|
</tagletArtifacts>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue