Skip to content

Commit

Permalink
JUnit dependency and maven-surefire-plugin removal from POMs
Browse files Browse the repository at this point in the history
Because there are no any unit/integration tests in the project JUnit dependency and maven-surefire-plugin these components are not needed in POM files.

Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored and lukasj committed Feb 8, 2021
1 parent 5ae680b commit c2c887b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 42 deletions.
8 changes: 0 additions & 8 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,3 @@ SPDX-License-Identifier: BSD-3-Clause
The project maintains the following source code repositories:

* https://github.com/eclipse-ee4j/jaf

## Third-party Content

This project leverages the following third party content.

JUnit (4.12)

* License: Eclipse Public License
21 changes: 0 additions & 21 deletions activation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,6 @@
</resource>
</resources>
<plugins>
<!--
Configure test plugin to find *TestSuite classes.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
<include>**/*TestSuite.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
Expand All @@ -66,12 +53,4 @@
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
13 changes: 0 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@
<!--Maven plugins version-->
<hk2.plugin.version>3.0.1</hk2.plugin.version>
<spotbugs.plugin.version>4.2.0</spotbugs.plugin.version>
<!--Dependencies version-->
<junit.version>4.13.1</junit.version>
</properties>

<developers>
Expand Down Expand Up @@ -429,11 +427,6 @@ Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -522,12 +515,6 @@ Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">
<artifactId>jakarta.activation</artifactId>
<version>${project.version}</version>
</dependency>
<!--Test dependencies-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit c2c887b

Please sign in to comment.