mirror of https://github.com/apache/maven.git
o New integration test to check that parent poms of dependency poms are resolved.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163229 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dac27a045a
commit
ca071d67e5
|
@ -0,0 +1,9 @@
|
|||
*~
|
||||
*.log
|
||||
target
|
||||
*.ipr
|
||||
*.iws
|
||||
dist
|
||||
target
|
||||
.classpath
|
||||
.project
|
|
@ -0,0 +1 @@
|
|||
target/classes/org/apache/maven/it0010/PersonFinder.class
|
|
@ -0,0 +1 @@
|
|||
compiler:compile
|
|
@ -0,0 +1,20 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>maven</groupId>
|
||||
<artifactId>maven-core-it0010</artifactId>
|
||||
<version>1.0</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>
|
||||
<type>test</type>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
rm ${localRepository}/maven/plugins/maven-core-it-plugin-1.0-SNAPSHOT.jar
|
|
@ -0,0 +1,8 @@
|
|||
package org.apache.maven.it0010;
|
||||
|
||||
import org.codehaus.classworlds.ClassRealm;
|
||||
|
||||
public class PersonFinder
|
||||
{
|
||||
private ClassRealm classRealm;
|
||||
}
|
Loading…
Reference in New Issue