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:
Jason van Zyl 2004-06-18 11:56:03 +00:00
parent 9860371d4b
commit aa2501b1b7
21 changed files with 125 additions and 0 deletions

View File

@ -0,0 +1,9 @@
*~
*.log
target
*.ipr
*.iws
dist
target
.classpath
.project

View File

@ -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

View File

@ -0,0 +1 @@
jar:jar

View File

@ -0,0 +1,5 @@
<projectX>
<groupId>maven</groupId>
<artifactId>maven-core-it1000</artifactId>
<version>1.0</version>
</project>

View File

@ -0,0 +1,5 @@
package org.apache.maven.it1000;
public class Dummy
{
}

View File

@ -0,0 +1,9 @@
*~
*.log
target
*.ipr
*.iws
dist
target
.classpath
.project

View File

@ -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

View File

@ -0,0 +1 @@
jar:jar

View File

@ -0,0 +1,5 @@
<projectX>
<groupId>maven</groupId>
<artifactId>maven-core-it1001</artifactId>
<version>1.0</version>
</project>

View File

@ -0,0 +1,5 @@
package org.apache.maven.it1000;
public class Dummy
{
}

View File

@ -0,0 +1,9 @@
*~
*.log
target
*.ipr
*.iws
dist
target
.classpath
.project

View File

@ -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

View File

@ -0,0 +1 @@
jar:jar

View File

@ -0,0 +1,5 @@
<projectX>
<groupId>maven</groupId>
<artifactId>maven-core-it1002</artifactId>
<version>1.0</version>
</project>

View File

@ -0,0 +1,6 @@
package org.apache.maven.it1002;
public class Person
{
intt foo;
}

View File

@ -0,0 +1,9 @@
*~
*.log
target
*.ipr
*.iws
dist
target
.classpath
.project

View File

@ -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

View File

@ -0,0 +1 @@
jar:jar

View File

@ -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>

View File

@ -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;
}
}

View File

@ -0,0 +1,12 @@
package org.apache.maven.it1003;
import junit.framework.TestCase;
public class PersonTest
extends TestCase
{
public void testPerson()
{
assertTrue( false );
}
}