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:
Jason van Zyl 2006-10-22 01:55:53 +00:00
parent c5c6b07e3b
commit c694253925
61 changed files with 18 additions and 64 deletions

View File

@ -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()

View File

@ -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>

View File

@ -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>

View File

@ -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;

View File

@ -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;

View File

@ -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()

View File

@ -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;

View File

@ -1,4 +1,4 @@
package org.apache.maven.it0001; package org.apache.maven.it0060;
import junit.framework.TestCase; import junit.framework.TestCase;

View File

@ -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() );
}
}

View File

@ -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;
}
}

View File

@ -1,4 +1,4 @@
package org.apache.maven.it0001; package org.apache.maven.it0065;
import junit.framework.TestCase; import junit.framework.TestCase;