Initial revision

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163402 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-02-24 04:52:04 +00:00
parent dac661c709
commit cf55279551
7 changed files with 48 additions and 0 deletions

View File

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

View File

@ -0,0 +1 @@
target/classes/org/apache/maven/it0014/PersonFinder.class

View File

@ -0,0 +1 @@
compile

BIN
maven-core-it/it0014/lib/A.jar Executable file

Binary file not shown.

View File

@ -0,0 +1,23 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>maven</groupId>
<artifactId>maven-core-it0014</artifactId>
<version>3.8.1</version>
<dependencies>
<dependency>
<groupId>maven</groupId>
<artifactId>maven-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>A</groupId>
<artifactId>A</artifactId>
<file>lib/A.jar</file>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1 @@
rm target/classes/org/apache/maven/it0014/PersonFinder.class

View File

@ -0,0 +1,12 @@
package org.apache.maven.it0014;
import org.codehaus.classworlds.ClassRealm;
import junit.framework.TestCase;
import A.A;
public class PersonFinder
{
private ClassRealm classRealm;
private A a;
}