Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/it/MJAR-162/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@
<name>Maven</name>
<packaging>jar</packaging>
<description>Avoid creating jars</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
Expand Down
10 changes: 1 addition & 9 deletions src/it/MJAR-30-excludes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@
<name>Maven</name>
<packaging>jar</packaging>
<description>Tests excludes.</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
Expand All @@ -51,7 +43,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<version>@version.maven-surefire@</version>
</plugin>
</plugins>
</build>
Expand Down
57 changes: 0 additions & 57 deletions src/it/MJAR-30-excludes/src/test/java/foo/project003/AppTest.java

This file was deleted.

18 changes: 0 additions & 18 deletions src/it/MJAR-30-excludes/src/test/resources/excluded-file.txt

This file was deleted.

This file was deleted.

13 changes: 2 additions & 11 deletions src/it/MJAR-30-fullcontent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,8 @@
<artifactId>maven-jar-plugin-test-mjar-30-01</artifactId>
<version>99.0</version>
<name>Maven</name>
<packaging>jar</packaging>
<url>http://maven.apache.org</url>
<description>Tests the normal behavior of jar-plugin.</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
Expand All @@ -46,7 +37,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<version>@version.maven-surefire@</version>
</plugin>
</plugins>
</build>
Expand Down

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion src/it/MJAR-30-include/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ under the License.
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<version>@version.maven-surefire@</version>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 0 additions & 8 deletions src/it/MJAR-62-toolchain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@
<name>jar plugin it</name>
</organization>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down
10 changes: 1 addition & 9 deletions src/it/MJAR-80-exclude/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@
<name>Maven</name>
<packaging>jar</packaging>
<description>Tests excludes.</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
Expand All @@ -58,7 +50,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<version>@version.maven-surefire@</version>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,4 @@
* under the License.
*/

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
* Unit test for simple App.
*/
public class AppIntegrationTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppIntegrationTest( String testName )
{
super( testName );
}

/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppIntegrationTest.class );
}

/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}
public class AppIntegrationTest {}
37 changes: 1 addition & 36 deletions src/it/MJAR-80-exclude/src/test/java/foo/project003/AppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,4 @@
* under the License.
*/

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}

/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}

/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}
public class AppTest {}
10 changes: 1 addition & 9 deletions src/it/MJAR-80-fullcontent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@
<name>Maven</name>
<packaging>jar</packaging>
<description>Tests the normal behavior of test-jar-plugin.</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
Expand All @@ -53,7 +45,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<version>@version.maven-surefire@</version>
</plugin>
</plugins>
</build>
Expand Down
Loading