mirror of https://github.com/apache/maven.git
o removed unused import
o fixed typos o code simplification (no code change) git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@950240 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c63fc3a154
commit
cf68e8e091
|
@ -19,7 +19,6 @@ package org.apache.maven.artifact.repository.metadata;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
//import org.apache.maven.artifact.metadata.ArtifactMetadata;
|
||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||
import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy;
|
||||
|
||||
|
@ -35,9 +34,9 @@ public interface RepositoryMetadata
|
|||
{
|
||||
|
||||
int RELEASE = 1;
|
||||
|
||||
|
||||
int SNAPSHOT = 2;
|
||||
|
||||
|
||||
int RELEASE_OR_SNAPSHOT = RELEASE | SNAPSHOT;
|
||||
|
||||
/**
|
||||
|
@ -73,19 +72,19 @@ public interface RepositoryMetadata
|
|||
*
|
||||
* @return if it is a snapshot
|
||||
*/
|
||||
boolean isSnapshot();
|
||||
boolean isSnapshot();
|
||||
|
||||
/**
|
||||
* Gets the artifact quality this metadata refers to. One of {@link #RELEASE}, {@link #SNAPSHOT} or
|
||||
* {@link #RELEASE_OR_SNAPSHOT}.
|
||||
*
|
||||
* @return The artifact qualitiy this metadata refers to.
|
||||
*
|
||||
* @return The artifact quality this metadata refers to.
|
||||
*/
|
||||
int getNature();
|
||||
|
||||
/**
|
||||
* Gets the policy that applies to this metadata regarding the specified repository.
|
||||
*
|
||||
*
|
||||
* @param repository The repository for which to determine the policy, must not be {@code null}.
|
||||
* @return The policy, never {@code null}.
|
||||
*/
|
||||
|
|
|
@ -225,9 +225,8 @@ public class ResolutionNode
|
|||
boolean success = true;
|
||||
if ( filter != null )
|
||||
{
|
||||
for ( Iterator i = getTrail().iterator(); i.hasNext() && success; )
|
||||
for ( Artifact artifact : getTrail() )
|
||||
{
|
||||
Artifact artifact = (Artifact) i.next();
|
||||
if ( !filter.include( artifact ) )
|
||||
{
|
||||
success = false;
|
||||
|
|
|
@ -61,7 +61,7 @@ public interface MavenExecutionRequest
|
|||
// Reactor Failure Mode
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
static final String REACTOR_FAIL_FAST = "FAIL_FAST";
|
||||
static final String REACTOR_FAIL_FAST = "FAIL_FAST";
|
||||
|
||||
static final String REACTOR_FAIL_AT_END = "FAIL_AT_END";
|
||||
|
||||
|
@ -78,7 +78,7 @@ public interface MavenExecutionRequest
|
|||
static final String REACTOR_MAKE_BOTH = "make-both";
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
// Artifactr repository policies
|
||||
// Artifact repository policies
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
static final String CHECKSUM_POLICY_FAIL = ArtifactRepositoryPolicy.CHECKSUM_POLICY_FAIL;
|
||||
|
@ -106,7 +106,7 @@ public interface MavenExecutionRequest
|
|||
/**
|
||||
* Sets the system properties to use for interpolation and profile activation. The system properties are collected
|
||||
* from the runtime environment like {@link System#getProperties()} and environment variables.
|
||||
*
|
||||
*
|
||||
* @param systemProperties The system properties, may be {@code null}.
|
||||
* @return This request, never {@code null}.
|
||||
*/
|
||||
|
@ -115,7 +115,7 @@ public interface MavenExecutionRequest
|
|||
/**
|
||||
* Gets the system properties to use for interpolation and profile activation. The system properties are collected
|
||||
* from the runtime environment like {@link System#getProperties()} and environment variables.
|
||||
*
|
||||
*
|
||||
* @return The system properties, never {@code null}.
|
||||
*/
|
||||
Properties getSystemProperties();
|
||||
|
@ -124,7 +124,7 @@ public interface MavenExecutionRequest
|
|||
* Sets the user properties to use for interpolation and profile activation. The user properties have been
|
||||
* configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
|
||||
* line.
|
||||
*
|
||||
*
|
||||
* @param userProperties The user properties, may be {@code null}.
|
||||
* @return This request, never {@code null}.
|
||||
*/
|
||||
|
@ -134,7 +134,7 @@ public interface MavenExecutionRequest
|
|||
* Gets the user properties to use for interpolation and profile activation. The user properties have been
|
||||
* configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
|
||||
* line.
|
||||
*
|
||||
*
|
||||
* @return The user properties, never {@code null}.
|
||||
*/
|
||||
Properties getUserProperties();
|
||||
|
@ -251,12 +251,12 @@ public interface MavenExecutionRequest
|
|||
|
||||
MavenExecutionRequest addRemoteRepository( ArtifactRepository repository );
|
||||
MavenExecutionRequest addPluginArtifactRepository( ArtifactRepository repository );
|
||||
|
||||
|
||||
/**
|
||||
* Set a new list of remote repositories to use the execution request. This is necessary if you perform
|
||||
* transformations on the remote repositories being used. For example if you replace existing repositories with
|
||||
* mirrors then it's easier to just replace the whole list with a new list of transformed repositories.
|
||||
*
|
||||
*
|
||||
* @param repositories
|
||||
* @return
|
||||
*/
|
||||
|
|
|
@ -22,7 +22,6 @@ package org.apache.maven.execution;
|
|||
import java.util.List;
|
||||
|
||||
import org.apache.maven.artifact.resolver.ArtifactResolutionResult;
|
||||
import org.apache.maven.exception.ExceptionSummary;
|
||||
import org.apache.maven.project.MavenProject;
|
||||
|
||||
/**
|
||||
|
@ -52,7 +51,7 @@ public interface MavenExecutionResult
|
|||
|
||||
/**
|
||||
* Gets the build summary for the specified project.
|
||||
*
|
||||
*
|
||||
* @param project The project to get the build summary for, must not be {@code null}.
|
||||
* @return The build summary for the project or {@code null} if the project has not been built (yet).
|
||||
*/
|
||||
|
@ -60,7 +59,7 @@ public interface MavenExecutionResult
|
|||
|
||||
/**
|
||||
* Add the specified build summary.
|
||||
*
|
||||
*
|
||||
* @param summary The build summary to add, must not be {@code null}.
|
||||
*/
|
||||
void addBuildSummary( BuildSummary summary );
|
||||
|
|
|
@ -21,10 +21,7 @@ package org.apache.maven.execution;
|
|||
|
||||
import java.io.File;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
|
Loading…
Reference in New Issue