use bom for junit with upgrade to 5.7.2 and testcontainer dependencies (#6532)
* use bom for junit and testcontainer dependencies Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com> * remove some duplicate and redundant dependencies declaration as we now have the bom Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
c9a5d8df58
commit
41481669af
17
pom.xml
17
pom.xml
|
@ -37,7 +37,7 @@
|
||||||
<jmh.version>1.26</jmh.version>
|
<jmh.version>1.26</jmh.version>
|
||||||
<jmhjar.name>benchmarks</jmhjar.name>
|
<jmhjar.name>benchmarks</jmhjar.name>
|
||||||
<tycho-version>2.1.0</tycho-version>
|
<tycho-version>2.1.0</tycho-version>
|
||||||
<junit.version>5.7.0</junit.version>
|
<junit.version>5.7.2</junit.version>
|
||||||
<maven.version>3.6.3</maven.version>
|
<maven.version>3.6.3</maven.version>
|
||||||
<maven.resolver.version>1.6.1</maven.resolver.version>
|
<maven.resolver.version>1.6.1</maven.resolver.version>
|
||||||
<weld.version>3.1.8.Final</weld.version>
|
<weld.version>3.1.8.Final</weld.version>
|
||||||
|
@ -1117,9 +1117,11 @@
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit</groupId>
|
||||||
<artifactId>junit-jupiter</artifactId>
|
<artifactId>junit-bom</artifactId>
|
||||||
<version>${junit.version}</version>
|
<version>${junit.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Test Container Deps -->
|
<!-- Test Container Deps -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -1129,13 +1131,10 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.testcontainers</groupId>
|
<groupId>org.testcontainers</groupId>
|
||||||
<artifactId>testcontainers</artifactId>
|
<artifactId>testcontainers-bom</artifactId>
|
||||||
<version>${testcontainers.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.testcontainers</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<version>${testcontainers.version}</version>
|
<version>${testcontainers.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.java.dev.jna</groupId>
|
<groupId>net.java.dev.jna</groupId>
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.testcontainers</groupId>
|
<groupId>org.testcontainers</groupId>
|
||||||
<artifactId>mariadb</artifactId>
|
<artifactId>mariadb</artifactId>
|
||||||
<version>${testcontainers.version}</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -9,22 +9,6 @@
|
||||||
<artifactId>test-sessions-parent</artifactId>
|
<artifactId>test-sessions-parent</artifactId>
|
||||||
<name>Jetty Tests :: Sessions :: Parent</name>
|
<name>Jetty Tests :: Sessions :: Parent</name>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<version>${junit.version}</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter-api</artifactId>
|
|
||||||
<version>${junit.version}</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>test-sessions-common</module>
|
<module>test-sessions-common</module>
|
||||||
<module>test-file-sessions</module>
|
<module>test-file-sessions</module>
|
||||||
|
|
|
@ -72,7 +72,6 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.testcontainers</groupId>
|
<groupId>org.testcontainers</groupId>
|
||||||
<artifactId>gcloud</artifactId>
|
<artifactId>gcloud</artifactId>
|
||||||
<version>${testcontainers.version}</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -81,7 +81,6 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.testcontainers</groupId>
|
<groupId>org.testcontainers</groupId>
|
||||||
<artifactId>mariadb</artifactId>
|
<artifactId>mariadb</artifactId>
|
||||||
<version>${testcontainers.version}</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in New Issue