Skip to content

Commit

Permalink
test dependency issues fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
JanWesterkamp-iJUG committed Jun 23, 2022
1 parent ab55453 commit 7c51591
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 21 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
14 changes: 1 addition & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>


<!-- Used in TCK only -->
<testng.version>6.14.3</testng.version>
<arquillian.version>1.6.0.Final</arquillian.version>

Expand Down Expand Up @@ -141,18 +141,6 @@
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>${jakarta.cdi.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<version>${arquillian.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
16 changes: 9 additions & 7 deletions tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,15 @@
<artifactId>jakarta.enterprise.cdi-api</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
</dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<version>${arquillian.version}</version>
</dependency>
</dependencies>
<build>
<resources>
Expand Down

0 comments on commit 7c51591

Please sign in to comment.