[MNG-6146] Several small stylistic and spelling improvements to code and documentation

Spelling fixes:

* system
* tokenizer
* toolchain
* trailing
* transitive
* unsupported
* version
* artifact
* attachment
* codehaus
* colleagues
* comparison
* concurrency
* configure
* creation
* dependency
* descriptor
* downstream
* efficient
* e.g.
* elements
* encountered
* encounters
* environments
* executed
* explicitly
* happens
* hierarchical
* hierarchy
* ignore
* implemented
* implementers
* independence
* indicates
* inheritance
* inherited
* inherits
* install
* interface
* javascript
* laziness
* management
* maven
* metadata
* mgmt
* minimalist
* nonexistent
* objects
* overridden
* print
* project
* properties
* recessive
* referring
* repository
* representation
* retrieval
* retrieve
* rigorous
* should
* spontaneously
* subsequent

Literal fixes:

*  use static final values

Style fixes:

* use the proper term for char U+002D (-) hyphen(-minus) instead of dash

This closes #100
This commit is contained in:
Josh Soref 2017-01-23 04:56:27 +00:00 committed by Michael Osipov
parent bd57ec9666
commit 1740265984
127 changed files with 194 additions and 192 deletions

View File

@ -39,7 +39,7 @@
Installing Maven
----------------
1) Unpack the archive where you would like to store the binaries, eg:
1) Unpack the archive where you would like to store the binaries, e.g.:
Unix-based operating systems (Linux, Solaris and Mac OS X)
tar zxvf apache-maven-3.x.y.tar.gz
@ -48,7 +48,7 @@
2) A directory called "apache-maven-3.x.y" will be created.
3) Add the bin directory to your PATH, eg:
3) Add the bin directory to your PATH, e.g.:
Unix-based operating systems (Linux, Solaris and Mac OS X)
export PATH=/usr/local/apache-maven-3.x.y/bin:$PATH

View File

@ -22,7 +22,7 @@
import org.apache.maven.artifact.Artifact;
/**
* Indiciates a cycle in the dependency graph.
* Indicates a cycle in the dependency graph.
*
* @author <a href="mailto:brett@apache.org">Brett Porter</a>
*/

View File

@ -33,7 +33,7 @@
*
* <p>Features:
* <ul>
* <li>mixing of '<code>-</code>' (dash) and '<code>.</code>' (dot) separators,</li>
* <li>mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li>
* <li>transition between characters and digits also constitutes a separator:
* <code>1.0alpha1 =&gt; [1, 0, alpha, 1]</code></li>
* <li>unlimited number of version components,</li>
@ -50,7 +50,7 @@
* </ul>
* Unknown qualifiers are considered after known qualifiers, with lexical order (always case insensitive),
* </li>
* <li>a dash usually precedes a qualifier, and is always less important than something preceded with a dot.</li>
* <li>a hyphen usually precedes a qualifier, and is always less important than something preceded with a dot.</li>
* </ul></p>
*
* @see <a href="https://cwiki.apache.org/confluence/display/MAVENOLD/Versioning">"Versioning" on Maven Wiki</a>

View File

@ -180,7 +180,7 @@ public final void parseVersion( String version )
fallback = Pattern.compile( "\\d+" ).matcher( qualifier ).matches();
}
// string tokenzier won't detect these and ignores them
// string tokenizer won't detect these and ignores them
if ( part1.contains( ".." ) || part1.startsWith( "." ) || part1.endsWith( "." ) )
{
fallback = true;

View File

@ -34,7 +34,7 @@ under the License.
<description>Maven2 classes maintained as compatibility layer.</description>
<properties>
<checkstyle.failOnViolation>false</checkstyle.failOnViolation><!-- lazyness for code that will disappear in future... -->
<checkstyle.failOnViolation>false</checkstyle.failOnViolation><!-- laziness for code that will disappear in future... -->
</properties>
<dependencies>

View File

@ -40,7 +40,7 @@ public interface ArtifactInstaller
* @param artifact the artifact definition
* @param localRepository the local repository to install into
* @throws ArtifactInstallationException if an error occurred installing the artifact
* @deprecated to be removed before 2.0 after the instlal/deploy plugins use the alternate
* @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
* method
*/
@Deprecated

View File

@ -24,7 +24,7 @@
/**
* Do not use!
* <p/>
* Should only be implmemented by DebugResolutionListener. Remove this
* Should only be implemented by DebugResolutionListener. Remove this
* when the ResolutionListener interface deprecation of the manageArtifact
* method (and the [yet to be done] addition of these methods to that
* interface) has had a chance to propagate to all interested plugins.

View File

@ -62,7 +62,7 @@ public class DefaultProfileManager
/**
* @deprecated without passing in the system properties, the SystemPropertiesProfileActivator will not work
* correctly in embedded envirnments.
* correctly in embedded environments.
*/
public DefaultProfileManager( PlexusContainer container )
{

View File

@ -230,7 +230,7 @@ private void assembleModelInheritance( Model child, Model parent, String childPa
}
}
assembleDistributionInheritence( child, parent, childPathAdjustment, appendPaths );
assembleDistributionInheritance( child, parent, childPathAdjustment, appendPaths );
// issueManagement
if ( child.getIssueManagement() == null )
@ -569,7 +569,7 @@ private void assembleBuildInheritance( Model child, Model parent )
}
}
private void assembleDistributionInheritence( Model child, Model parent, String childPathAdjustment,
private void assembleDistributionInheritance( Model child, Model parent, String childPathAdjustment,
boolean appendPaths )
{
if ( parent.getDistributionManagement() != null )

View File

@ -35,7 +35,7 @@ public interface ModelInheritanceAssembler
void assembleModelInheritance( Model child, Model parent );
void assembleBuildInheritance( Build childBuild, Build parentBuild, boolean handleAsInheriance );
void assembleBuildInheritance( Build childBuild, Build parentBuild, boolean handleAsInheritance );
void copyModel( Model dest, Model source );
}

View File

@ -477,7 +477,7 @@ private void recurse( ArtifactResolutionResult result, ResolutionNode node,
manageArtifact( child, managedVersions, listeners );
// Also, we need to ensure that any exclusions it presents are
// added to the artifact before we retrive the metadata
// added to the artifact before we retrieve the metadata
// for the artifact; otherwise we may end up with unwanted
// dependencies.
Artifact ma = managedVersions.get( childKey );
@ -691,7 +691,7 @@ boolean checkScopeUpdate( ResolutionNode farthest, ResolutionNode nearest, List<
{
fireEvent( ResolutionListener.UPDATE_SCOPE, listeners, nearest, farthestArtifact );
// previously we cloned the artifact, but it is more effecient to just update the artifactScope
// previously we cloned the artifact, but it is more efficient to just update the artifactScope
// if problems are later discovered that the original object needs its original artifactScope value,
// cloning may
// again be appropriate

View File

@ -31,7 +31,7 @@ public class MetadataGraphVertex
{
ArtifactMetadata md;
// indications to use these in comparrison
// indications to use these in comparison
private boolean compareVersion = false;
private boolean compareScope = false;

View File

@ -187,7 +187,7 @@ under the License.
<version>1.0.0</version>
<description><![CDATA[
Repository contains the information needed
for establishing connections with remote repoistory
for establishing connections with remote repository
]]></description>
<fields>
<field>
@ -249,7 +249,7 @@ under the License.
<superClass>RepositoryBase</superClass>
<version>1.0.0</version>
<description>
Repository contains the information needed for establishing connections with remote repoistory
Repository contains the information needed for establishing connections with remote repository
</description>
<fields>
<field>

View File

@ -42,7 +42,7 @@ public class ProjectInheritanceTest
// p3 inherits from p2
// p2 inherits from p1
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -38,7 +38,7 @@ public class ProjectInheritanceTest
// p3 inherits from p2
// p2 inherits from p1
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -49,7 +49,7 @@ public class ProjectInheritanceTest
// p3 inherits from p2
// p2 inherits from p1
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -41,7 +41,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -39,7 +39,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -37,7 +37,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -38,7 +38,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -37,7 +37,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -38,7 +38,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -36,7 +36,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -27,7 +27,7 @@
import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
/**
* Verifies scope inheritence of direct and transitive dependencies.
* Verifies scope inheritance of direct and transitive dependencies.
*
* Should show three behaviors:
*
@ -44,7 +44,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -25,7 +25,7 @@
import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
/**
* Verifies scope of root project is preserved regardless of parent depenedency management.
* Verifies scope of root project is preserved regardless of parent dependency management.
*
* @author <a href="mailto:pschneider@gmail.com">Patrick Schneider</a>
* @see <a href="https://issues.apache.org/jira/browse/MNG-2919">MNG-2919</a>
@ -36,7 +36,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -35,7 +35,7 @@ public class ProjectInheritanceTest
// ----------------------------------------------------------------------
//
// p1 inherits from p0
// p0 inhertis from super model
// p0 inherits from super model
//
// or we can show it graphically as:
//

View File

@ -57,7 +57,7 @@ We need this form so that the model builder can make the first pass at merging.
.
</plugins>
Once we have the version of the plugins the appropriate call to the plugin manager can be made to get the MojoDescriptor for the goal that needs to be run. In the MojoDescriptor we are interested in the <configuration/> element and <parameters/> element. From these elements we need to make a component configuration for the MojoExecution. The actual DOM like structure we create is of type PlexusConfiguration and is the type we use with the ComponentConfigurator to initialize fields in a Plexus component. Typically this is done within Plexus with the configuration supplied with component configuration, but in Maven we take configuration values from the POM. So we have to use the ComponentConfigurator outside of Plexus in order to configurure the Maven Mojo which is just a Plexus component. We can use the information from the MojoDescriptor along with the merged configuration information that is now present in the POM to create the complete PlexusConfiguration used to populate values in the Maven Mojo.
Once we have the version of the plugins the appropriate call to the plugin manager can be made to get the MojoDescriptor for the goal that needs to be run. In the MojoDescriptor we are interested in the <configuration/> element and <parameters/> element. From these elements we need to make a component configuration for the MojoExecution. The actual DOM like structure we create is of type PlexusConfiguration and is the type we use with the ComponentConfigurator to initialize fields in a Plexus component. Typically this is done within Plexus with the configuration supplied with component configuration, but in Maven we take configuration values from the POM. So we have to use the ComponentConfigurator outside of Plexus in order to configure the Maven Mojo which is just a Plexus component. We can use the information from the MojoDescriptor along with the merged configuration information that is now present in the POM to create the complete PlexusConfiguration used to populate values in the Maven Mojo.
foreach configuration element:
- if read only and being set squawk

View File

@ -140,7 +140,7 @@ h3. Plugins need a specific metadata model
Each application will have its own model for plugins. Much of this model will be common across applications but there will always be issues specific to a particular applicationss plugins. Some of the issues that need to be taken into consideration:
* Plugin dependencies
* Plugin resources like Javascript files or images
* Plugin resources like JavaScript files or images
* Configuration metadata and default configuration values
* Extension points that plugins might expose

View File

@ -213,7 +213,7 @@ public void setUrl( String url )
* Return the protocol name.
* <br/>
* E.g: for input
* <code>http://www.codehause.org</code> this method will return <code>http</code>
* <code>http://www.codehaus.org</code> this method will return <code>http</code>
*
* @param url the url
* @return the host name

View File

@ -37,7 +37,7 @@
*
* @author Jason van Zyl
* @TODO carlos: all these possible has*Exceptions and get*Exceptions methods make the clients too
* complex requiring a long list of checks, need to create a parent/interfact/encapsulation
* complex requiring a long list of checks, need to create a parent/interface/encapsulation
* for the types of exceptions
*/
public class ArtifactResolutionResult

View File

@ -137,10 +137,10 @@ private Plugin findPlugin( Model model, String groupId, String artifactId )
}
}
PluginManagement mngt = build.getPluginManagement();
if ( mngt != null )
PluginManagement mgmt = build.getPluginManagement();
if ( mgmt != null )
{
for ( Plugin plugin : mngt.getPlugins() )
for ( Plugin plugin : mgmt.getPlugins() )
{
if ( groupId.equals( plugin.getGroupId() ) && artifactId.equals( plugin.getArtifactId() ) )
{

View File

@ -24,7 +24,7 @@
/**
* A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
* system property {@code maven.ext.class.path} on the command line. As soon as dependency injection is setup, Maven
* looks up all implementators of this interface and calls their {@link #init(Context)} method. <em>Note:</em>
* looks up all implementers of this interface and calls their {@link #init(Context)} method. <em>Note:</em>
* Implementors are strongly advised to inherit from {@link AbstractEventSpy} instead of directly implementing this
* interface.
* @since 3.0.2

View File

@ -121,8 +121,10 @@ else if ( request.isUpdateSnapshots() )
}
int errorPolicy = 0;
errorPolicy |= request.isCacheNotFound() ? ResolutionErrorPolicy.CACHE_NOT_FOUND : 0;
errorPolicy |= request.isCacheTransferError() ? ResolutionErrorPolicy.CACHE_TRANSFER_ERROR : 0;
errorPolicy |= request.isCacheNotFound() ? ResolutionErrorPolicy.CACHE_NOT_FOUND
: ResolutionErrorPolicy.CACHE_DISABLED;
errorPolicy |= request.isCacheTransferError() ? ResolutionErrorPolicy.CACHE_TRANSFER_ERROR
: ResolutionErrorPolicy.CACHE_DISABLED;
session.setResolutionErrorPolicy(
new SimpleResolutionErrorPolicy( errorPolicy, errorPolicy | ResolutionErrorPolicy.CACHE_NOT_FOUND ) );

View File

@ -22,7 +22,7 @@
/**
* A task that is a goal
* <p/>
* TODO: From a concurrecy perspective, this class is not good. The combination of mutable/immutable state is not nice
* TODO: From a concurrency perspective, this class is not good. The combination of mutable/immutable state is not nice
*
* @since 3.0
* @author Benjamin Bentmann

View File

@ -69,5 +69,5 @@ public boolean isAggregating()
return aggregating;
}
// TODO: Consider throwing UnsupprtedSomething on hashCode/equals
// TODO: Consider throwing UnsupportedSomething on hashCode/equals
}

View File

@ -37,7 +37,7 @@
* @author Kristian Rosenvold
* <p/>
* NOTE: This class is not part of any public api and can be changed or deleted without prior notice.
* This class in particular may spontaneusly self-combust and be replaced by a plexus-compliant thread aware
* This class in particular may spontaneously self-combust and be replaced by a plexus-compliant thread aware
* logger implementation at any time.
*/
@SuppressWarnings( { "SynchronizationOnLocalVariableOrMethodParameter" } )
@ -54,7 +54,7 @@ public class ThreadOutputMuxer
private final ByteArrayOutputStream defaultOutputStreamForUnknownData = new ByteArrayOutputStream();
private final PrintStream defaultPringStream = new PrintStream( defaultOutputStreamForUnknownData );
private final PrintStream defaultPrintStream = new PrintStream( defaultOutputStreamForUnknownData );
private final Set<ProjectSegment> completedBuilds = Collections.synchronizedSet( new HashSet<ProjectSegment>() );
@ -175,7 +175,7 @@ private PrintStream getThreadBoundPrintStream()
ProjectSegment threadProject = projectBuildThreadLocal.get();
if ( threadProject == null )
{
return defaultPringStream;
return defaultPrintStream;
}
if ( ownsRealOutputStream( threadProject ) )
{

View File

@ -57,7 +57,7 @@ public void notifyFieldChangeUsingReflection( String fieldName, Object value, Ob
}
/**
* Creates a human-friendly string represenation of the specified object.
* Creates a human-friendly string representation of the specified object.
*
* @param obj The object to create a string representation for, may be <code>null</code>.
* @return The string representation, never <code>null</code>.

View File

@ -49,14 +49,14 @@ static class CacheRecord
public final ClassRealm realm;
public final ExtensionDescriptor desciptor;
public final ExtensionDescriptor descriptor;
public final List<Artifact> artifacts;
public CacheRecord( ClassRealm realm, ExtensionDescriptor descriptor, List<Artifact> artifacts )
{
this.realm = realm;
this.desciptor = descriptor;
this.descriptor = descriptor;
this.artifacts = artifacts;
}

View File

@ -67,7 +67,7 @@ public interface PluginVersionRequest
/**
* Gets the POM whose build plugins are to be scanned for the version.
*
* @return The POM whose build plugins are to be scanned for the verion or {@code null} to only search the plugin
* @return The POM whose build plugins are to be scanned for the version or {@code null} to only search the plugin
* repositories.
*/
Model getPom();

View File

@ -197,7 +197,7 @@ public synchronized ProjectRealmCache.CacheRecord createProjectRealm( MavenProje
pluginManager.setupExtensionsRealm( project, plugin, request.getRepositorySession() );
final ClassRealm extensionRealm = recordRealm.realm;
final ExtensionDescriptor extensionDescriptor = recordRealm.desciptor;
final ExtensionDescriptor extensionDescriptor = recordRealm.descriptor;
final List<Artifact> artifacts = recordRealm.artifacts;
extensionRealms.add( extensionRealm );

View File

@ -48,7 +48,7 @@ class DefaultProjectBuildingResult
* Creates a new result with the specified contents.
*
* @param project The project that was built, may be {@code null}.
* @param problems The problems that were encouterned, may be {@code null}.
* @param problems The problems that were encountered, may be {@code null}.
* @param dependencyResolutionResult The result of the resolution for the project dependencies, may be {@code null}.
*/
public DefaultProjectBuildingResult( MavenProject project, List<ModelProblem> problems,
@ -68,7 +68,7 @@ public DefaultProjectBuildingResult( MavenProject project, List<ModelProblem> pr
*
* @param projectId The identifier of the project, may be {@code null}.
* @param pomFile The POM file from which the project was built, may be {@code null}.
* @param problems The problems that were encouterned, may be {@code null}.
* @param problems The problems that were encountered, may be {@code null}.
*/
public DefaultProjectBuildingResult( String projectId, File pomFile, List<ModelProblem> problems )
{

View File

@ -153,10 +153,10 @@ public DependencyResolutionResult resolve( DependencyResolutionRequest request )
}
}
DependencyManagement depMngt = project.getDependencyManagement();
if ( depMngt != null )
DependencyManagement depMgmt = project.getDependencyManagement();
if ( depMgmt != null )
{
for ( Dependency dependency : depMngt.getDependencies() )
for ( Dependency dependency : depMgmt.getDependencies() )
{
collect.addManagedDependency( RepositoryUtils.toDependency( dependency, stereotypes ) );
}

View File

@ -41,7 +41,7 @@ public interface MavenProjectHelper
* * See {@link #attachArtifact(MavenProject, String, String, java.io.File)}, but with classifier set to null.
* @param project project reference.
* @param artifactType artifact type.
* @param artifactFile arrifact file.
* @param artifactFile artifact file.
*/
void attachArtifact( MavenProject project, String artifactType, File artifactFile );

View File

@ -38,7 +38,7 @@ public interface ProjectBuildingRequest
List<ArtifactRepository> getRemoteRepositories();
ProjectBuildingRequest setPluginArtifactRepositories( List<ArtifactRepository> pluginArtifacgRepositories );
ProjectBuildingRequest setPluginArtifactRepositories( List<ArtifactRepository> pluginArtifactRepositories );
List<ArtifactRepository> getPluginArtifactRepositories();

View File

@ -208,8 +208,8 @@ public ResolutionGroup retrieve( MetadataResolutionRequest request )
{
dependencies = rel.project.getDependencies();
DependencyManagement depMngt = rel.project.getDependencyManagement();
managedDependencies = ( depMngt != null ) ? depMngt.getDependencies() : null;
DependencyManagement depMgmt = rel.project.getDependencyManagement();
managedDependencies = ( depMgmt != null ) ? depMgmt.getDependencies() : null;
pomRepositories = rel.project.getRemoteArtifactRepositories();
}

View File

@ -55,8 +55,8 @@ public List<Dependency> getDependencies()
public List<Dependency> getManagedDependencies()
{
DependencyManagement depMngt = project.getDependencyManagement();
return ( depMngt != null ) ? depMngt.getDependencies() : Collections.<Dependency>emptyList();
DependencyManagement depMgmt = project.getDependencyManagement();
return ( depMgmt != null ) ? depMgmt.getDependencies() : Collections.<Dependency>emptyList();
}
static class PomArtifactHandler

View File

@ -102,7 +102,7 @@ public interface MetadataResolutionRequest
boolean isResolveManagedVersions();
/**
* Enables/disables resolution of the dependency manageemnt information.
* Enables/disables resolution of the dependency management information.
*
* @param resolveManagedVersions {@code true} if the dependency management information should be retrieved, {@code
* false} otherwise.

View File

@ -168,7 +168,7 @@
<description>
<![CDATA[
<p>Toolchain configuration information, like location or any information that is to be retrieved.</p>
<p>Actual content structure is completely open: each toochain type will define its own format and semantics.</p>
<p>Actual content structure is completely open: each toolchain type will define its own format and semantics.</p>
<p>In general, this is a properties format: <code>&lt;name&gt;value&lt;/name&gt;</code> with
per-toolchain defined properties names.</p>
]]></description>

View File

@ -66,7 +66,7 @@ ${maven.home}
We once had a document that Vincent and I agreed upon and I was about to
implement it and then I disappeared for 8 months so it never came to pass.
So I guess it's important to figure out what people are using propeties
So I guess it's important to figure out what people are using properties
files for and see if we can't incorporate it all into the POM. Or if we do
have properties file (something I would like to avoid) say they don't
contribute in any meaningful way to information in the POM. For example a
@ -110,9 +110,9 @@ Unified source directory
itself. This way locations of intermediary artifacts of a build would be
in a known location. This would also help with developer setup i.e. getting
new developers up and running. They could run a maven command and have all
their source trees set up in the same way as their collegues.
their source trees set up in the same way as their colleagues.
here's what I do currently in the netbeans part of the mevenide project to
here's what I do currently in the netbeans part of the mavenide project to
find the relevant subprojects/sibling projects. I check if the user has
defined the maven.multiproject.includes property in any of his properties
files for the current project. if yes. then I'm able to find projects that
@ -120,7 +120,7 @@ Unified source directory
problems with the current solution are:
1. information is duplicate. once in POM's dependencies and once in the
maven.multiproject.includes property.
2. it works without problems only for projects with relative paths, eg. from
2. it works without problems only for projects with relative paths, e.g., from
one CVS repository.. for projects from multiple SCM repositories it's harder
to maintain the same relative links on all developer computers.
not sure the unified source directory structure addresses this issue.

View File

@ -167,7 +167,7 @@ Offline Mode Design
This is wholly dependent on Maven-Wagon, above.
We could possibly use a flag on a particular Wagon to see whether it supports
offline mode, and then test to see if the file-based basedir for an aritfact
offline mode, and then test to see if the file-based basedir for an artifact
repository works...if it doesn't work, we can mark that repository offline...
OTOH, all offline-mode checks can probably be run from Wagon-based APIs.
@ -201,7 +201,7 @@ Offline Mode Design
The majority of mojos will leave the requiresOnline == false,
since online/offline status will be irrelevant, provided they have
access to their required artifacts and other classpath elements. In the case
of required artifacts and other classpath elemtents, this is assumed by the
of required artifacts and other classpath elements, this is assumed by the
mojo API to be in a correct state, and will be handled by the Wagon
modifications.

View File

@ -40,9 +40,9 @@ Maven plugin execution isolation
The <<<plexus.core>>> realm contains the resources required to run any
plexus application; The <<<plexus.core.maven>>> realm contains all of the
resources required to run Maven. Each subseqent plugin realm contains the
resources required to run Maven. Each subsequent plugin realm contains the
JAR plugin as well as its dependencies. The realms noted above are setup
in a hierachical structure where the resources in the parent realms are
in a hierarchical structure where the resources in the parent realms are
available but the <<realm is searched first before a search is made in
the parent realm>>.

View File

@ -57,7 +57,7 @@ public void testGetSortedProjects()
public void testVerifyExpectedParentStructure()
throws CycleDetectedException, DuplicateProjectException
{
// This test verifies the baseline structure used in susequent tests. If this fails, the rest will fail.
// This test verifies the baseline structure used in subsequent tests. If this fails, the rest will fail.
ProjectDependencyGraph graph = threeProjectsDependingOnASingle();
final List<MavenProject> sortedProjects = graph.getSortedProjects();
assertEquals( aProject, sortedProjects.get( 0 ) );
@ -66,7 +66,7 @@ public void testVerifyExpectedParentStructure()
assertEquals( depender3, sortedProjects.get( 3 ) );
}
public void testVerifyThatDownsteamProjectsComeInSortedOrder()
public void testVerifyThatDownstreamProjectsComeInSortedOrder()
throws CycleDetectedException, DuplicateProjectException
{
final List<MavenProject> downstreamProjects =
@ -102,7 +102,7 @@ public void testNonTransitivesInOrder()
assertEquals( depender2, downstreamProjects.get( 3 ) );
}
public void testWithTranistiveOnly()
public void testWithTransitiveOnly()
throws CycleDetectedException, DuplicateProjectException
{
final ProjectDependencyGraph graph = new DefaultProjectDependencyGraph(
@ -115,7 +115,7 @@ public void testWithTranistiveOnly()
assertEquals( depender2, downstreamProjects.get( 3 ) );
}
public void testWithMissingTranistiveOnly()
public void testWithMissingTransitiveOnly()
throws CycleDetectedException, DuplicateProjectException
{
final ProjectDependencyGraph graph = new DefaultProjectDependencyGraph(

View File

@ -83,7 +83,7 @@ protected String getProjectsDirectory()
return "src/test/projects/lifecycle-executor";
}
public void testCrweation()
public void testCreation()
throws Exception
{
assertNotNull( defaultLifeCycles );

View File

@ -25,7 +25,7 @@
</head>
<body>
<h2>Design</h2>
These stubs can be thought of as hand-coded mock obects. They allow unit tests to test only specific
These stubs can be thought of as hand-coded mock objects. They allow unit tests to test only specific
aspects of a component while ignoring others.
These stubs form an internally consistent data-set that is not expected to change. They are

View File

@ -171,7 +171,7 @@ private List<Dependency> getDependencies()
public List<MavenProject> getSortedProjects()
{
return Arrays.asList( A, B, C, X, Y, Z ); // I'm not entirely sure about the order but this shold do...
return Arrays.asList( A, B, C, X, Y, Z ); // I'm not entirely sure about the order but this should do...
}
public List<MavenProject> getDownstreamProjects( MavenProject project, boolean transitive )

View File

@ -119,7 +119,7 @@ public void testRemoteResourcesPlugin()
This will not work until the RR plugin is released to get rid of the binding to the reporting exception which is a mistake.
This happpens after removing the reporting API from the core:
This happens after removing the reporting API from the core:
java.lang.NoClassDefFoundError: org/apache/maven/reporting/MavenReportException

View File

@ -59,7 +59,7 @@ public void run() {
{
latch.await();
}
catch (InterruptedException ingore)
catch (InterruptedException ignore)
{
// Test may fail if we get interrupted
}

View File

@ -86,7 +86,7 @@ protected MavenProject getProject( Artifact pom, boolean allowStub )
}
/**
* Check that we can build ok from the middle pom of a (parent,child,grandchild) heirarchy
* Check that we can build ok from the middle pom of a (parent,child,grandchild) hierarchy
* @throws Exception
*/
public void testBuildFromMiddlePom() throws Exception

View File

@ -49,7 +49,7 @@ public List<ArtifactRepository> createArtifactRepositories( List<Repository> pom
}
}
public ProjectRealmCache.CacheRecord createProjectRealm( MavenProject proejct,
public ProjectRealmCache.CacheRecord createProjectRealm( MavenProject project,
Model model, ProjectBuildingRequest request )
{
return new ProjectRealmCache.CacheRecord( null, null );

View File

@ -94,7 +94,7 @@ public void testEmptyUrl()
}
/**
* Tests that modules is not overriden by profile
* Tests that modules is not overridden by profile
*
* @throws Exception
*/
@ -207,7 +207,7 @@ public void testValidationErrorUponNonUniqueDependencyManagementKey()
{
try
{
buildPom( "unique-dependency-key/dep-mngt" );
buildPom( "unique-dependency-key/dep-mgmt" );
fail( "Non-unique dependency keys did not cause validation error" );
}
catch ( ProjectBuildingException e )
@ -235,7 +235,7 @@ public void testValidationErrorUponNonUniqueDependencyManagementKeyInProfile()
{
try
{
buildPom( "unique-dependency-key/dep-mngt-in-profile" );
buildPom( "unique-dependency-key/dep-mgmt-in-profile" );
fail( "Non-unique dependency keys did not cause validation error" );
}
catch ( ProjectBuildingException e )
@ -414,7 +414,7 @@ public void testConsecutiveEmptyElements()
public void testOrderOfGoalsFromPluginExecutionWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-goals-order/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-goals-order/wo-plugin-mgmt" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions[1]/goals" ) ).size() );
assertEquals( "b", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "a", pom.getValue( "build/plugins[1]/executions[1]/goals[2]" ) );
@ -427,7 +427,7 @@ public void testOrderOfGoalsFromPluginExecutionWithoutPluginManagement()
public void testOrderOfGoalsFromPluginExecutionWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-goals-order/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-goals-order/w-plugin-mgmt" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions[1]/goals" ) ).size() );
assertEquals( "b", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "a", pom.getValue( "build/plugins[1]/executions[1]/goals[2]" ) );
@ -439,7 +439,7 @@ public void testOrderOfGoalsFromPluginExecutionWithPluginManagement()
public void testOrderOfPluginExecutionsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-order/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-order/wo-plugin-mgmt" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "b", pom.getValue( "build/plugins[1]/executions[1]/id" ) );
assertEquals( "a", pom.getValue( "build/plugins[1]/executions[2]/id" ) );
@ -452,7 +452,7 @@ public void testOrderOfPluginExecutionsWithoutPluginManagement()
public void testOrderOfPluginExecutionsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-order/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-order/w-plugin-mgmt" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "b", pom.getValue( "build/plugins[1]/executions[1]/id" ) );
assertEquals( "a", pom.getValue( "build/plugins[1]/executions[2]/id" ) );
@ -488,7 +488,7 @@ public void testInterpolationWithXmlMarkup()
public void testOrderOfMergedPluginExecutionsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "merged-plugin-exec-order/wo-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "merged-plugin-exec-order/wo-plugin-mgmt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "parent-1", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "parent-2", pom.getValue( "build/plugins[1]/executions[2]/goals[1]" ) );
@ -500,7 +500,7 @@ public void testOrderOfMergedPluginExecutionsWithoutPluginManagement()
public void testOrderOfMergedPluginExecutionsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "merged-plugin-exec-order/w-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "merged-plugin-exec-order/w-plugin-mgmt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "parent-1", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "parent-2", pom.getValue( "build/plugins[1]/executions[2]/goals[1]" ) );
@ -522,7 +522,7 @@ public void testDifferentContainersWithSameId()
public void testOrderOfMergedPluginExecutionGoalsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "merged-plugin-exec-goals-order/wo-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "merged-plugin-exec-goals-order/wo-plugin-mgmt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions[1]/goals" ) ).size() );
assertEquals( "child-a", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
@ -535,7 +535,7 @@ public void testOrderOfMergedPluginExecutionGoalsWithoutPluginManagement()
public void testOrderOfMergedPluginExecutionGoalsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "merged-plugin-exec-goals-order/w-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "merged-plugin-exec-goals-order/w-plugin-mgmt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/executions[1]/goals" ) ).size() );
assertEquals( "child-a", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "merged", pom.getValue( "build/plugins[1]/executions[1]/goals[2]" ) );
@ -548,7 +548,7 @@ public void testOrderOfMergedPluginExecutionGoalsWithPluginManagement()
public void testOverridingOfInheritedPluginExecutionsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-merging/wo-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "plugin-exec-merging/wo-plugin-mgmt/sub" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "child-default", pom.getValue( "build/plugins[1]/executions[@id='default']/phase" ) );
assertEquals( "child-non-default", pom.getValue( "build/plugins[1]/executions[@id='non-default']/phase" ) );
@ -558,7 +558,7 @@ public void testOverridingOfInheritedPluginExecutionsWithoutPluginManagement()
public void testOverridingOfInheritedPluginExecutionsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-merging/w-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "plugin-exec-merging/w-plugin-mgmt/sub" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "child-default", pom.getValue( "build/plugins[1]/executions[@id='default']/phase" ) );
assertEquals( "child-non-default", pom.getValue( "build/plugins[1]/executions[@id='non-default']/phase" ) );
@ -569,7 +569,7 @@ public void testOverridingOfInheritedPluginExecutionsWithPluginManagement()
public void testOrderOfMergedPluginDependenciesWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "merged-plugin-class-path-order/wo-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "merged-plugin-class-path-order/wo-plugin-mgmt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/dependencies" ) ).size() );
assertNotNull( pom.getValue( "build/plugins[1]/dependencies[1]" ) );
@ -588,7 +588,7 @@ public void testOrderOfMergedPluginDependenciesWithoutPluginManagement()
public void testOrderOfMergedPluginDependenciesWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "merged-plugin-class-path-order/w-plugin-mngt/sub" );
PomTestWrapper pom = buildPom( "merged-plugin-class-path-order/w-plugin-mgmt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/dependencies" ) ).size() );
assertEquals( "c", pom.getValue( "build/plugins[1]/dependencies[1]/artifactId" ) );
assertEquals( "1", pom.getValue( "build/plugins[1]/dependencies[1]/version" ) );
@ -769,7 +769,7 @@ public void testJoiningOfContainersWhenChildHasEmptyElements()
public void testOrderOfPluginConfigurationElementsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-config-order/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-config-order/wo-plugin-mgmt" );
assertEquals( "one", pom.getValue( "build/plugins[1]/configuration/stringParams/stringParam[1]" ) );
assertEquals( "two", pom.getValue( "build/plugins[1]/configuration/stringParams/stringParam[2]" ) );
assertEquals( "three", pom.getValue( "build/plugins[1]/configuration/stringParams/stringParam[3]" ) );
@ -780,7 +780,7 @@ public void testOrderOfPluginConfigurationElementsWithoutPluginManagement()
public void testOrderOfPluginConfigurationElementsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-config-order/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-config-order/w-plugin-mgmt" );
assertEquals( "one", pom.getValue( "build/plugins[1]/configuration/stringParams/stringParam[1]" ) );
assertEquals( "two", pom.getValue( "build/plugins[1]/configuration/stringParams/stringParam[2]" ) );
assertEquals( "three", pom.getValue( "build/plugins[1]/configuration/stringParams/stringParam[3]" ) );
@ -790,7 +790,7 @@ public void testOrderOfPluginConfigurationElementsWithPluginManagement()
public void testOrderOfPluginExecutionConfigurationElementsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-config-order/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-config-order/wo-plugin-mgmt" );
String prefix = "build/plugins[1]/executions[1]/configuration/";
assertEquals( "one", pom.getValue( prefix + "stringParams/stringParam[1]" ) );
assertEquals( "two", pom.getValue( prefix + "stringParams/stringParam[2]" ) );
@ -804,7 +804,7 @@ public void testOrderOfPluginExecutionConfigurationElementsWithoutPluginManageme
public void testOrderOfPluginExecutionConfigurationElementsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-config-order/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-config-order/w-plugin-mgmt" );
String prefix = "build/plugins[1]/executions[1]/configuration/";
assertEquals( "one", pom.getValue( prefix + "stringParams/stringParam[1]" ) );
assertEquals( "two", pom.getValue( prefix + "stringParams/stringParam[2]" ) );
@ -876,7 +876,7 @@ private void testAppendOfInheritedPluginConfiguration( String test )
public void testMultiplePluginExecutionsWithAndWithoutIdsWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-w-and-wo-id/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-w-and-wo-id/wo-plugin-mgmt" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "log-string", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "log-string", pom.getValue( "build/plugins[1]/executions[2]/goals[1]" ) );
@ -885,7 +885,7 @@ public void testMultiplePluginExecutionsWithAndWithoutIdsWithoutPluginManagement
public void testMultiplePluginExecutionsWithAndWithoutIdsWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-exec-w-and-wo-id/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-exec-w-and-wo-id/w-plugin-mgmt" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "log-string", pom.getValue( "build/plugins[1]/executions[1]/goals[1]" ) );
assertEquals( "log-string", pom.getValue( "build/plugins[1]/executions[2]/goals[1]" ) );
@ -894,7 +894,7 @@ public void testMultiplePluginExecutionsWithAndWithoutIdsWithPluginManagement()
public void testDependencyOrderWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "dependency-order/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "dependency-order/wo-plugin-mgmt" );
assertEquals( 4, ( (List<?>) pom.getValue( "dependencies" ) ).size() );
assertEquals( "a", pom.getValue( "dependencies[1]/artifactId" ) );
assertEquals( "c", pom.getValue( "dependencies[2]/artifactId" ) );
@ -905,7 +905,7 @@ public void testDependencyOrderWithoutPluginManagement()
public void testDependencyOrderWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "dependency-order/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "dependency-order/w-plugin-mgmt" );
assertEquals( 4, ( (List<?>) pom.getValue( "dependencies" ) ).size() );
assertEquals( "a", pom.getValue( "dependencies[1]/artifactId" ) );
assertEquals( "c", pom.getValue( "dependencies[2]/artifactId" ) );
@ -1033,7 +1033,7 @@ public void testEmptyScm()
public void testPluginConfigurationUsingAttributesWithoutPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-config-attributes/wo-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-config-attributes/wo-plugin-mgmt" );
assertEquals( "src", pom.getValue( "build/plugins[1]/configuration/domParam/copy/@todir" ) );
assertEquals( "true", pom.getValue( "build/plugins[1]/configuration/domParam/copy/@overwrite" ) );
assertEquals( "target", pom.getValue( "build/plugins[1]/configuration/domParam/copy/fileset/@dir" ) );
@ -1045,7 +1045,7 @@ public void testPluginConfigurationUsingAttributesWithoutPluginManagement()
public void testPluginConfigurationUsingAttributesWithPluginManagement()
throws Exception
{
PomTestWrapper pom = buildPom( "plugin-config-attributes/w-plugin-mngt" );
PomTestWrapper pom = buildPom( "plugin-config-attributes/w-plugin-mgmt" );
assertEquals( "src", pom.getValue( "build/plugins[1]/configuration/domParam/copy/@todir" ) );
assertEquals( "true", pom.getValue( "build/plugins[1]/configuration/domParam/copy/@overwrite" ) );
assertEquals( "target", pom.getValue( "build/plugins[1]/configuration/domParam/copy/fileset/@dir" ) );
@ -1518,7 +1518,7 @@ public void testInterpolationWithSystemProperty()
{
Properties sysProps = new Properties();
sysProps.setProperty( "system.property", "PASSED" );
PomTestWrapper pom = buildPom( "sytem-property-interpolation", sysProps );
PomTestWrapper pom = buildPom( "system-property-interpolation", sysProps );
assertEquals( "PASSED", pom.getValue( "name" ) );
}

View File

@ -64,11 +64,11 @@ private Dependency createDependency( MavenProject project )
private Dependency createDependency( String groupId, String artifactId, String version )
{
Dependency depdendency = new Dependency();
depdendency.setGroupId( groupId );
depdendency.setArtifactId( artifactId );
depdendency.setVersion( version );
return depdendency;
Dependency dependency = new Dependency();
dependency.setGroupId( groupId );
dependency.setArtifactId( artifactId );
dependency.setVersion( version );
return dependency;
}
private Plugin createPlugin( MavenProject project )

View File

@ -84,7 +84,7 @@ public void testMergeJdkExtra()
PersistedToolchains jdksExtra = reader.read( jdksExtraIS );
assertEquals( 2, jdks.getToolchains().size() );
// switch dominant with reccessive
// switch dominant with recessive
merger.merge( jdksExtra, jdks, TrackableBase.USER_LEVEL );
assertEquals( 4, jdksExtra.getToolchains().size() );
assertEquals( 2, jdks.getToolchains().size() );
@ -119,7 +119,7 @@ public void testMergeJdkExtend()
PersistedToolchains jdksExtend = reader.read( jdksExtendIS );
assertEquals( 2, jdks.getToolchains().size() );
// switch dominant with reccessive
// switch dominant with recessive
merger.merge( jdksExtend, jdks, TrackableBase.USER_LEVEL );
assertEquals( 2, jdksExtend.getToolchains().size() );
Xpp3Dom config0 = (Xpp3Dom) jdksExtend.getToolchains().get( 0 ).getConfiguration();

View File

@ -29,7 +29,7 @@ public static Test suite()
}
/**
* Rigourous Test :-)
* Rigorous Test :-)
*/
public void testApp()
{

View File

@ -29,7 +29,7 @@ under the License.
<name>Maven Integration Test :: MNG-3808</name>
<description>
Test the reports are executeed in the order given in the POM.
Test the reports are executed in the order given in the POM.
</description>
<build>

View File

@ -23,7 +23,7 @@ under the License.
<modelVersion>4.0.0</modelVersion>
<!--
This minimalistic POM tests mere inheritance from its parent.
This minimalist POM tests mere inheritance from its parent.
-->
<parent>

View File

@ -23,7 +23,7 @@ under the License.
<modelVersion>4.0.0</modelVersion>
<!--
This minimalistic POM tests mere inheritance from its parent. The <prerequisites> should not be inherited.
This minimalist POM tests mere inheritance from its parent. The <prerequisites> should not be inherited.
-->
<parent>

View File

@ -27,7 +27,7 @@ under the License.
<version>1.0-SNAPSHOT</version>
<name>Maven Integration Test :: it0043</name>
<description>Test for repository inheritence - ensure using the same id overrides the defaults</description>
<description>Test for repository inheritance - ensure using the same id overrides the defaults</description>
<repositories>
<repository>

Some files were not shown because too many files have changed in this diff Show More