mirror of https://github.com/apache/maven.git
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:
parent
dac661c709
commit
cf55279551
|
@ -0,0 +1,10 @@
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
target
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
dist
|
||||||
|
target
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
log.txt
|
|
@ -0,0 +1 @@
|
||||||
|
target/classes/org/apache/maven/it0014/PersonFinder.class
|
|
@ -0,0 +1 @@
|
||||||
|
compile
|
Binary file not shown.
|
@ -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>
|
|
@ -0,0 +1 @@
|
||||||
|
rm target/classes/org/apache/maven/it0014/PersonFinder.class
|
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue