mirror of https://github.com/apache/maven.git
o clean up the package names in the ITs they don't coexist well together
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@466612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c5c6b07e3b
commit
c694253925
|
@ -2,7 +2,7 @@ package org.apache.maven.it0000;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
public class IT0000PersonTest
|
public class PersonTest
|
||||||
extends TestCase
|
extends TestCase
|
||||||
{
|
{
|
||||||
public void testPerson()
|
public void testPerson()
|
|
@ -1 +0,0 @@
|
||||||
name = jason
|
|
|
@ -1,13 +0,0 @@
|
||||||
<project>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>org.apache.maven</groupId>
|
|
||||||
<artifactId>maven-core-it-support-parent</artifactId>
|
|
||||||
<version>1.0</version>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.maven</groupId>
|
|
||||||
<artifactId>maven-core-it-support</artifactId>
|
|
||||||
<version>1.0</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
|
|
@ -21,9 +21,9 @@
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.it.plugins</groupId>
|
||||||
<artifactId>maven-core-it-plugin</artifactId>
|
<artifactId>maven-it-plugin-touch</artifactId>
|
||||||
<version>1.0</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package org.apache.maven.it0016;
|
package org.apache.maven.it0016;
|
||||||
|
|
||||||
public class Person
|
public class IT0016Person
|
||||||
{
|
{
|
||||||
private String name;
|
private String name;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package org.apache.maven.it0000;
|
package org.apache.maven.it0000;
|
||||||
|
|
||||||
public class IT0000Person
|
public class Person2
|
||||||
{
|
{
|
||||||
private String name;
|
private String name;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package org.apache.maven.it0000;
|
package it0039.project2.src.test.java.org.apache.maven.it0039;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
public class PersonTest
|
public class Person2Test
|
||||||
extends TestCase
|
extends TestCase
|
||||||
{
|
{
|
||||||
public void testPerson()
|
public void testPerson()
|
|
@ -3,7 +3,7 @@ package org.apache.maven.it0047;
|
||||||
import org.codehaus.plexus.PlexusTestCase;
|
import org.codehaus.plexus.PlexusTestCase;
|
||||||
|
|
||||||
public class Person
|
public class Person
|
||||||
extends PlexusTestCase
|
extends PlexusTestCase
|
||||||
{
|
{
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it0060;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it0060;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it0060;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
package org.apache.maven.it0001;
|
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
|
||||||
|
|
||||||
public class PersonTest
|
|
||||||
extends TestCase
|
|
||||||
{
|
|
||||||
public void testPerson()
|
|
||||||
{
|
|
||||||
Person person = new Person();
|
|
||||||
|
|
||||||
person.setName( "foo" );
|
|
||||||
|
|
||||||
assertEquals( "foo", person.getName() );
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
package org.apache.maven.it0001;
|
|
||||||
|
|
||||||
public class Person
|
|
||||||
{
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
public void setName( String name )
|
|
||||||
{
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName()
|
|
||||||
{
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it0065;
|
||||||
|
|
||||||
public class Person
|
public class Person
|
||||||
{
|
{
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it0065;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it0065;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it0001;
|
package org.apache.maven.it00065;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
Loading…
Reference in New Issue