code formatting

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1172225 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Herve Boutemy 2011-09-18 08:52:12 +00:00
parent 40cdcb7563
commit a67cc71fbe
10 changed files with 173 additions and 89 deletions

View File

@ -140,16 +140,19 @@ public class DefaultMavenProjectBuilderTest
throws Exception throws Exception
{ {
ArtifactRepositoryLayout repoLayout = lookup( ArtifactRepositoryLayout.class, "default" ); ArtifactRepositoryLayout repoLayout = lookup( ArtifactRepositoryLayout.class, "default" );
ArtifactRepository r = repositorySystem.createArtifactRepository( "local", "file://" + localRepoDir.getAbsolutePath(), repoLayout, null, null ); ArtifactRepository r =
repositorySystem.createArtifactRepository( "local", "file://" + localRepoDir.getAbsolutePath(), repoLayout,
null, null );
return r; return r;
} }
public void xtestLoop() throws Exception public void xtestLoop()
throws Exception
{ {
while( true ) while ( true )
{ {
File f1 = getTestFile( "src/test/resources/projects/duplicate-plugins-merged-pom.xml" ); File f1 = getTestFile( "src/test/resources/projects/duplicate-plugins-merged-pom.xml" );
getProject( f1 ); getProject( f1 );
} }
} }

View File

@ -46,7 +46,9 @@ public class MavenProjectTest
MavenProject childProject = new MavenProject( childModel ); MavenProject childProject = new MavenProject( childModel );
File childFile = new File( System.getProperty( "java.io.tmpdir" ), "maven-project-tests" + System.currentTimeMillis() + "/child/pom.xml" ); File childFile =
new File( System.getProperty( "java.io.tmpdir" ), "maven-project-tests" + System.currentTimeMillis()
+ "/child/pom.xml" );
childProject.setFile( childFile ); childProject.setFile( childFile );
@ -169,7 +171,7 @@ public class MavenProjectTest
assertEquals( "Expecting 1 active profile", 1, activeProfilesClone.size() ); assertEquals( "Expecting 1 active profile", 1, activeProfilesClone.size() );
assertNotSame( "The list of active profiles should have been cloned too but is same", assertNotSame( "The list of active profiles should have been cloned too but is same", activeProfilesOrig,
activeProfilesOrig, activeProfilesClone); activeProfilesClone );
} }
} }

View File

@ -131,8 +131,8 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "profile-properties-interpolation", "interpolation-profile" ); PomTestWrapper pom = buildPom( "profile-properties-interpolation", "interpolation-profile" );
assertEquals("PASSED", pom.getValue("properties[1]/test")); assertEquals( "PASSED", pom.getValue( "properties[1]/test" ) );
assertEquals("PASSED", pom.getValue("properties[1]/property")); assertEquals( "PASSED", pom.getValue( "properties[1]/property" ) );
} }
@ -145,8 +145,8 @@ public class PomConstructionTest
public void testThatExecutionsWithoutIdsAreMergedAndTheChildWins() public void testThatExecutionsWithoutIdsAreMergedAndTheChildWins()
throws Exception throws Exception
{ {
PomTestWrapper tester = buildPom("micromailer"); PomTestWrapper tester = buildPom( "micromailer" );
assertModelEquals( tester, "child-descriptor", "build/plugins[1]/executions[1]/goals[1]" ); assertModelEquals( tester, "child-descriptor", "build/plugins[1]/executions[1]/goals[1]" );
} }
/*MNG- /*MNG-
@ -246,7 +246,7 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "parent-interpolation/sub" ); PomTestWrapper pom = buildPom( "parent-interpolation/sub" );
pom = new PomTestWrapper(pom.getMavenProject().getParent()); pom = new PomTestWrapper( pom.getMavenProject().getParent() );
assertEquals( "1.3.0-SNAPSHOT", pom.getValue( "build/plugins[1]/version" ) ); assertEquals( "1.3.0-SNAPSHOT", pom.getValue( "build/plugins[1]/version" ) );
} }
@ -256,8 +256,9 @@ public class PomConstructionTest
{ {
PomTestWrapper pom = buildPomFromMavenProject( "maven-build/sub/pom.xml", null ); PomTestWrapper pom = buildPomFromMavenProject( "maven-build/sub/pom.xml", null );
for(String s: pom.getMavenProject().getTestClasspathElements()){ for( String s: pom.getMavenProject().getTestClasspathElements() )
System.out.println(s); {
System.out.println( s );
} }
} }
@ -286,9 +287,9 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "reporting-interpolation" ); PomTestWrapper pom = buildPom( "reporting-interpolation" );
assertEquals( createPath(Arrays.asList(System.getProperty("user.dir"), assertEquals( createPath( Arrays.asList( System.getProperty( "user.dir" ), "src", "test",
"src", "test", "resources-project-builder", "reporting-interpolation", "target", "site")), "resources-project-builder", "reporting-interpolation", "target",
pom.getValue( "reporting/outputDirectory" ) ); "site" ) ), pom.getValue( "reporting/outputDirectory" ) );
} }
@ -331,8 +332,10 @@ public class PomConstructionTest
{ {
PomTestWrapper pom = buildPom( "execution-configuration" ); PomTestWrapper pom = buildPom( "execution-configuration" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() ); assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions" ) ).size() );
assertEquals( "src/main/mdo/nexus.xml", ( pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/model" ) )); assertEquals( "src/main/mdo/nexus.xml",
assertEquals( "src/main/mdo/security.xml", ( pom.getValue( "build/plugins[1]/executions[2]/configuration[1]/model" ) )); ( pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/model" ) ) );
assertEquals( "src/main/mdo/security.xml",
( pom.getValue( "build/plugins[1]/executions[2]/configuration[1]/model" ) ) );
} }
/* /*
@ -350,8 +353,10 @@ public class PomConstructionTest
PomTestWrapper pom = buildPom( "single-configuration-inheritance" ); PomTestWrapper pom = buildPom( "single-configuration-inheritance" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/rules" ) ).size() ); assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/rules" ) ).size() );
assertEquals("2.0.6", pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/rules[1]/requireMavenVersion[1]/version" ) ); assertEquals( "2.0.6",
assertEquals("[1.4,)", pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/rules[1]/requireJavaVersion[1]/version" ) ); pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/rules[1]/requireMavenVersion[1]/version" ) );
assertEquals( "[1.4,)",
pom.getValue( "build/plugins[1]/executions[1]/configuration[1]/rules[1]/requireJavaVersion[1]/version" ) );
} }
public void testConfigWithPluginManagement() public void testConfigWithPluginManagement()
@ -555,7 +560,7 @@ public class PomConstructionTest
PomTestWrapper pom = buildPom( "merged-plugin-class-path-order/wo-plugin-mngt/sub" ); PomTestWrapper pom = buildPom( "merged-plugin-class-path-order/wo-plugin-mngt/sub" );
assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/dependencies" ) ).size() ); assertEquals( 5, ( (List<?>) pom.getValue( "build/plugins[1]/dependencies" ) ).size() );
assertNotNull( pom.getValue( "build/plugins[1]/dependencies[1]" )); assertNotNull( pom.getValue( "build/plugins[1]/dependencies[1]" ) );
assertEquals( "c", pom.getValue( "build/plugins[1]/dependencies[1]/artifactId" ) ); assertEquals( "c", pom.getValue( "build/plugins[1]/dependencies[1]/artifactId" ) );
assertEquals( "1", pom.getValue( "build/plugins[1]/dependencies[1]/version" ) ); assertEquals( "1", pom.getValue( "build/plugins[1]/dependencies[1]/version" ) );
assertEquals( "a", pom.getValue( "build/plugins[1]/dependencies[2]/artifactId" ) ); assertEquals( "a", pom.getValue( "build/plugins[1]/dependencies[2]/artifactId" ) );
@ -951,8 +956,8 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "dependency-inheritance/sub" ); PomTestWrapper pom = buildPom( "dependency-inheritance/sub" );
assertEquals(1, ( (List<?>) pom.getValue( "dependencies" ) ).size() ); assertEquals( 1, ( (List<?>) pom.getValue( "dependencies" ) ).size() );
assertEquals("4.4", pom.getValue("dependencies[1]/version") ); assertEquals( "4.4", pom.getValue( "dependencies[1]/version" ) );
} }
/** MNG-4034 */ /** MNG-4034 */
@ -974,7 +979,7 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "profile-module-inheritance/sub", "dist" ); PomTestWrapper pom = this.buildPom( "profile-module-inheritance/sub", "dist" );
assertEquals(0, ( (List<?>) pom.getValue( "modules" ) ).size()); assertEquals( 0, ( (List<?>) pom.getValue( "modules" ) ).size() );
} }
/** MNG-3621 */ /** MNG-3621 */
@ -982,7 +987,7 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "unc-path/sub" ); PomTestWrapper pom = this.buildPom( "unc-path/sub" );
assertEquals("file:////host/site/test-child", pom.getValue( "distributionManagement/site/url" )); assertEquals( "file:////host/site/test-child", pom.getValue( "distributionManagement/site/url" ) );
} }
/** MNG-2006 */ /** MNG-2006 */
@ -990,11 +995,11 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "url-append/child" ); PomTestWrapper pom = this.buildPom( "url-append/child" );
assertEquals("http://project.url/child", pom.getValue( "url" )); assertEquals( "http://project.url/child", pom.getValue( "url" ) );
assertEquals("http://viewvc.project.url/child", pom.getValue( "scm/url" )); assertEquals( "http://viewvc.project.url/child", pom.getValue( "scm/url" ) );
assertEquals("http://scm.project.url/child", pom.getValue( "scm/connection" )); assertEquals( "http://scm.project.url/child", pom.getValue( "scm/connection" ) );
assertEquals("https://scm.project.url/child", pom.getValue( "scm/developerConnection" )); assertEquals( "https://scm.project.url/child", pom.getValue( "scm/developerConnection" ) );
assertEquals("http://site.project.url/child", pom.getValue( "distributionManagement/site/url" )); assertEquals( "http://site.project.url/child", pom.getValue( "distributionManagement/site/url" ) );
} }
/** MNG-0479 */ /** MNG-0479 */
@ -1002,7 +1007,7 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "repo-inheritance" ); PomTestWrapper pom = this.buildPom( "repo-inheritance" );
assertEquals(1, ( (List<?>) pom.getValue( "repositories" ) ).size()); assertEquals( 1, ( (List<?>) pom.getValue( "repositories" ) ).size() );
assertEquals( "it0043", pom.getValue( "repositories[1]/name" ) ); assertEquals( "it0043", pom.getValue( "repositories[1]/name" ) );
} }
@ -1010,7 +1015,7 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "empty-scm" ); PomTestWrapper pom = this.buildPom( "empty-scm" );
assertNull(pom.getValue( "scm" )); assertNull( pom.getValue( "scm" ) );
} }
public void testPluginConfigurationUsingAttributesWithoutPluginManagement() public void testPluginConfigurationUsingAttributesWithoutPluginManagement()
@ -1078,18 +1083,18 @@ public class PomConstructionTest
{ {
PomTestWrapper pom = buildPom( "reporting-plugin-config/sub" ); PomTestWrapper pom = buildPom( "reporting-plugin-config/sub" );
assertEquals(2, ( (List<?>) pom.getValue( "reporting/plugins[1]/configuration/stringParams" ) ).size()); assertEquals( 2, ( (List<?>) pom.getValue( "reporting/plugins[1]/configuration/stringParams" ) ).size() );
assertEquals("parentParam", pom.getValue( "reporting/plugins[1]/configuration/stringParams[1]/stringParam[1]")); assertEquals( "parentParam", pom.getValue( "reporting/plugins[1]/configuration/stringParams[1]/stringParam[1]" ) );
assertEquals("childParam", pom.getValue( "reporting/plugins[1]/configuration/stringParams[1]/stringParam[2]")); assertEquals( "childParam", pom.getValue( "reporting/plugins[1]/configuration/stringParams[1]/stringParam[2]" ) );
assertEquals("true", pom.getValue( "reporting/plugins[1]/configuration/booleanParam")); assertEquals( "true", pom.getValue( "reporting/plugins[1]/configuration/booleanParam" ) );
} }
public void testPropertiesNoDuplication() public void testPropertiesNoDuplication()
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "properties-no-duplication/sub" ); PomTestWrapper pom = buildPom( "properties-no-duplication/sub" );
assertEquals(1, ( (Properties) pom.getValue( "properties" ) ).size()); assertEquals( 1, ( (Properties) pom.getValue( "properties" ) ).size() );
assertEquals("child", pom.getValue( "properties/pomProfile" ) ); assertEquals( "child", pom.getValue( "properties/pomProfile" ) );
} }
public void testPomInheritance() public void testPomInheritance()
@ -1350,7 +1355,7 @@ public class PomConstructionTest
{ {
PomTestWrapper pom = buildPom( "inherited-properties-interpolation/active-profile/sub" ); PomTestWrapper pom = buildPom( "inherited-properties-interpolation/active-profile/sub" );
assertEquals(1, pom.getMavenProject().getModel().getProfiles().size()); assertEquals( 1, pom.getMavenProject().getModel().getProfiles().size() );
buildPom( "inherited-properties-interpolation/active-profile/sub", "it-parent", "it-child" ); buildPom( "inherited-properties-interpolation/active-profile/sub", "it-parent", "it-child" );
assertEquals( "CHILD", pom.getValue( "properties/overridden" ) ); assertEquals( "CHILD", pom.getValue( "properties/overridden" ) );
@ -1361,10 +1366,10 @@ public class PomConstructionTest
public void testProfileDefaultActivation() public void testProfileDefaultActivation()
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "profile-default-deactivation" , "profile4"); PomTestWrapper pom = buildPom( "profile-default-deactivation", "profile4" );
assertEquals(1, pom.getMavenProject().getActiveProfiles().size() ); assertEquals( 1, pom.getMavenProject().getActiveProfiles().size() );
assertEquals(1, ( (List<?>) pom.getValue( "build/plugins" )).size() ); assertEquals( 1, ( (List<?>) pom.getValue( "build/plugins" ) ).size() );
assertEquals("2.1", pom.getValue( "build/plugins[1]/version" )); assertEquals( "2.1", pom.getValue( "build/plugins[1]/version" ) );
} }
/* MNG-1995 */ /* MNG-1995 */
@ -1382,11 +1387,11 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "build-extension-inheritance/sub" ); PomTestWrapper pom = buildPom( "build-extension-inheritance/sub" );
assertEquals(3, ( (List<?>) pom.getValue( "build/extensions" )).size() ); assertEquals( 3, ( (List<?>) pom.getValue( "build/extensions" ) ).size() );
assertEquals("b", pom.getValue( "build/extensions[1]/artifactId" ) ); assertEquals( "b", pom.getValue( "build/extensions[1]/artifactId" ) );
assertEquals("a", pom.getValue( "build/extensions[2]/artifactId" ) ); assertEquals( "a", pom.getValue( "build/extensions[2]/artifactId" ) );
assertEquals("0.2", pom.getValue( "build/extensions[2]/version" ) ); assertEquals( "0.2", pom.getValue( "build/extensions[2]/version" ) );
assertEquals("c", pom.getValue( "build/extensions[3]/artifactId" ) ); assertEquals( "c", pom.getValue( "build/extensions[3]/artifactId" ) );
} }
/*MNG-1957*/ /*MNG-1957*/
@ -1394,21 +1399,21 @@ public class PomConstructionTest
throws Exception throws Exception
{ {
Properties props = new Properties(); Properties props = new Properties();
props.put("java.version", "1.5.0_15"); props.put( "java.version", "1.5.0_15" );
PomTestWrapper pom = buildPom( "jdk-activation", props ); PomTestWrapper pom = buildPom( "jdk-activation", props );
assertEquals(3, pom.getMavenProject().getActiveProfiles().size()); assertEquals( 3, pom.getMavenProject().getActiveProfiles().size() );
assertEquals("PASSED", pom.getValue("properties/jdkProperty3")); assertEquals( "PASSED", pom.getValue( "properties/jdkProperty3" ) );
assertEquals("PASSED", pom.getValue("properties/jdkProperty2")); assertEquals( "PASSED", pom.getValue( "properties/jdkProperty2" ) );
assertEquals("PASSED", pom.getValue("properties/jdkProperty1")); assertEquals( "PASSED", pom.getValue( "properties/jdkProperty1" ) );
} }
/* MNG-2174 */ /* MNG-2174 */
public void testProfilePluginMngDependencies() public void testProfilePluginMngDependencies()
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "profile-plugin-mng-dependencies/sub" , "maven-core-it"); PomTestWrapper pom = buildPom( "profile-plugin-mng-dependencies/sub", "maven-core-it" );
assertEquals("a", pom.getValue( "build/plugins[1]/dependencies[1]/artifactId" ) ); assertEquals( "a", pom.getValue( "build/plugins[1]/dependencies[1]/artifactId" ) );
} }
/** MNG-4116 */ /** MNG-4116 */
@ -1433,45 +1438,46 @@ public class PomConstructionTest
public void testPluginManagementInheritance() public void testPluginManagementInheritance()
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "plugin-management-inheritance"); PomTestWrapper pom = this.buildPom( "plugin-management-inheritance" );
assertEquals("0.1-stub-SNAPSHOT", pom.getValue( "build/pluginManagement/plugins[@artifactId='maven-compiler-plugin']/version" ) ); assertEquals( "0.1-stub-SNAPSHOT",
pom.getValue( "build/pluginManagement/plugins[@artifactId='maven-compiler-plugin']/version" ) );
} }
public void testProfilePlugins() public void testProfilePlugins()
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "profile-plugins", "standard"); PomTestWrapper pom = this.buildPom( "profile-plugins", "standard" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins" ) ).size() ); assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins" ) ).size() );
assertEquals("maven-assembly2-plugin", pom.getValue( "build/plugins[2]/artifactId" ) ); assertEquals( "maven-assembly2-plugin", pom.getValue( "build/plugins[2]/artifactId" ) );
} }
public void testPluginInheritanceSimple() public void testPluginInheritanceSimple()
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "plugin-inheritance-simple/sub"); PomTestWrapper pom = this.buildPom( "plugin-inheritance-simple/sub" );
assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins" ) ).size() ); assertEquals( 2, ( (List<?>) pom.getValue( "build/plugins" ) ).size() );
} }
public void testPluginManagementDuplicate() public void testPluginManagementDuplicate()
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "plugin-management-duplicate/sub"); PomTestWrapper pom = this.buildPom( "plugin-management-duplicate/sub" );
assertEquals( 12, ( (List<?>) pom.getValue( "build/pluginManagement/plugins" ) ).size() ); assertEquals( 12, ( (List<?>) pom.getValue( "build/pluginManagement/plugins" ) ).size() );
} }
public void testDistributionManagement() public void testDistributionManagement()
throws Exception throws Exception
{ {
PomTestWrapper pom = this.buildPom( "distribution-management"); PomTestWrapper pom = this.buildPom( "distribution-management" );
assertEquals("legacy", pom.getValue( "distributionManagement/repository/layout" )); assertEquals( "legacy", pom.getValue( "distributionManagement/repository/layout" ) );
} }
public void testDependencyScopeInheritance() public void testDependencyScopeInheritance()
throws Exception throws Exception
{ {
PomTestWrapper pom = buildPom( "dependency-scope-inheritance/sub" ); PomTestWrapper pom = buildPom( "dependency-scope-inheritance/sub" );
String scope = (String) pom.getValue("dependencies[1]/scope"); String scope = (String) pom.getValue( "dependencies[1]/scope" );
assertEquals( "compile", scope ); assertEquals( "compile", scope );
} }
public void testDependencyScope() public void testDependencyScope()

View File

@ -1,5 +1,24 @@
package org.apache.maven.project; package org.apache.maven.project;
/*
* 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.
*/
import java.io.File; import java.io.File;
import java.util.List; import java.util.List;
import java.util.Properties; import java.util.Properties;

View File

@ -1,8 +1,24 @@
/**
*
*/
package org.apache.maven.project; package org.apache.maven.project;
/*
* 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.
*/
import java.util.List; import java.util.List;
import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.Artifact;

View File

@ -19,12 +19,16 @@ specific language governing permissions and limitations
under the License. under the License.
--> -->
<project> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>maven</groupId> <groupId>maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<name>Maven</name>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<name>Maven</name>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -1,11 +1,34 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<project> <!--
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.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>maven</groupId> <groupId>maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<name>Maven</name>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<name>Maven</name>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
@ -15,6 +38,7 @@
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -19,12 +19,16 @@
under the License. under the License.
--> -->
<project> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>maven</groupId> <groupId>maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<name>Maven</name>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<name>Maven</name>
<distributionManagement> <distributionManagement>
<snapshotRepository> <snapshotRepository>
<id>repo-id</id> <id>repo-id</id>

View File

@ -17,15 +17,18 @@ specific language governing permissions and limitations
under the License. under the License.
--> -->
<model xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<packaging>jar</packaging>
<name>Maven</name>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Maven</name>
<inceptionYear>2001</inceptionYear> <inceptionYear>2001</inceptionYear>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
@ -42,7 +45,8 @@ under the License.
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<scm> <scm>
<connection>scm-connection</connection> <connection>scm-connection</connection>
</scm> </scm>
</model> </project>

View File

@ -19,14 +19,16 @@
under the License. under the License.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>maven</groupId> <groupId>maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<name>Maven</name>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<name>Maven</name>
<profiles> <profiles>
<profile> <profile>
<activation> <activation>