remove unused integration test for file based jar overrides

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163480 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-03-08 01:42:51 +00:00
parent 0d7111f7ba
commit 62810b2c0f
7 changed files with 0 additions and 48 deletions

View File

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

View File

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

View File

@ -1 +0,0 @@
compile

Binary file not shown.

View File

@ -1,23 +0,0 @@
<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

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

View File

@ -1,12 +0,0 @@
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;
}