Skip to content

Commit

Permalink
Added dependency for JUnit
Browse files Browse the repository at this point in the history
Related to jakartaee#1126:
 * Added the bom and initial dependency for JUnit 5
 * Added the initial Maven surefire and failsafe plugin definitions

Signed-off-by:Nathan Erwin <[email protected]>
  • Loading branch information
nderwin authored and olamy committed Nov 20, 2022
1 parent 796ac7b commit e2412b3
Showing 1 changed file with 34 additions and 12 deletions.
46 changes: 34 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,6 @@
<version>${project.version}</version>
</dependency>


<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
Expand Down Expand Up @@ -414,15 +413,6 @@
<version>${slf4j.version}</version>
</dependency>


<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.8.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>junit5-extensions</artifactId>
Expand Down Expand Up @@ -453,13 +443,18 @@
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>



<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
Expand Down Expand Up @@ -630,7 +625,16 @@
<artifactId>webservices-tools</artifactId>
<version>${webservices-tools.version}</version>
</dependency>
<<<<<<< HEAD

=======

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
>>>>>>> 4bf66d761 (Added dependency for JUnit)
</dependencies>

<build>
Expand Down Expand Up @@ -684,6 +688,16 @@
<tckTestsFile>${project.build.outputDirectory}/META-INF/tck-tests.txt</tckTestsFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M7</version>
</plugin>
</plugins>
</pluginManagement>

Expand Down Expand Up @@ -716,6 +730,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
</plugins>
</build>
<pluginRepositories>
Expand Down

0 comments on commit e2412b3

Please sign in to comment.