mirror of https://github.com/apache/maven.git
Initial revision
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162799 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9860371d4b
commit
aa2501b1b7
|
@ -0,0 +1,9 @@
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
target
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
dist
|
||||||
|
target
|
||||||
|
.classpath
|
||||||
|
.project
|
|
@ -0,0 +1,3 @@
|
||||||
|
target/classes/org/apache/maven/it0000/Person.class
|
||||||
|
target/test-classes/org/apache/maven/it0000/PersonTest.class
|
||||||
|
target/maven-core-it0000-1.0.jar
|
|
@ -0,0 +1 @@
|
||||||
|
jar:jar
|
|
@ -0,0 +1,5 @@
|
||||||
|
<projectX>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-core-it1000</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</project>
|
|
@ -0,0 +1,5 @@
|
||||||
|
package org.apache.maven.it1000;
|
||||||
|
|
||||||
|
public class Dummy
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
target
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
dist
|
||||||
|
target
|
||||||
|
.classpath
|
||||||
|
.project
|
|
@ -0,0 +1,3 @@
|
||||||
|
target/classes/org/apache/maven/it0000/Person.class
|
||||||
|
target/test-classes/org/apache/maven/it0000/PersonTest.class
|
||||||
|
target/maven-core-it0000-1.0.jar
|
|
@ -0,0 +1 @@
|
||||||
|
jar:jar
|
|
@ -0,0 +1,5 @@
|
||||||
|
<projectX>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-core-it1001</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</project>
|
|
@ -0,0 +1,5 @@
|
||||||
|
package org.apache.maven.it1000;
|
||||||
|
|
||||||
|
public class Dummy
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
target
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
dist
|
||||||
|
target
|
||||||
|
.classpath
|
||||||
|
.project
|
|
@ -0,0 +1,3 @@
|
||||||
|
target/classes/org/apache/maven/it0000/Person.class
|
||||||
|
target/test-classes/org/apache/maven/it0000/PersonTest.class
|
||||||
|
target/maven-core-it0000-1.0.jar
|
|
@ -0,0 +1 @@
|
||||||
|
jar:jar
|
|
@ -0,0 +1,5 @@
|
||||||
|
<projectX>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-core-it1002</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</project>
|
|
@ -0,0 +1,6 @@
|
||||||
|
package org.apache.maven.it1002;
|
||||||
|
|
||||||
|
public class Person
|
||||||
|
{
|
||||||
|
intt foo;
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
target
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
dist
|
||||||
|
target
|
||||||
|
.classpath
|
||||||
|
.project
|
|
@ -0,0 +1,4 @@
|
||||||
|
target/classes/org/apache/maven/it0001/Person.class
|
||||||
|
target/test-classes/org/apache/maven/it0001/PersonTest.class
|
||||||
|
target/maven-core-it0001-1.0.jar
|
||||||
|
target/maven-core-it0001-1.0.jar!/it0001.properties
|
|
@ -0,0 +1 @@
|
||||||
|
jar:jar
|
|
@ -0,0 +1,13 @@
|
||||||
|
<project>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-core-it1003</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
<type>test</type>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
|
@ -0,0 +1,16 @@
|
||||||
|
package org.apache.maven.it1003;
|
||||||
|
|
||||||
|
public class Person
|
||||||
|
{
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public void setName( String name )
|
||||||
|
{
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName()
|
||||||
|
{
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
package org.apache.maven.it1003;
|
||||||
|
|
||||||
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
|
public class PersonTest
|
||||||
|
extends TestCase
|
||||||
|
{
|
||||||
|
public void testPerson()
|
||||||
|
{
|
||||||
|
assertTrue( false );
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue