Skip to content

Commit

Permalink
Bump slf4j from 1.7.36 to 2.0.9 in /tests
Browse files Browse the repository at this point in the history
This introduces a version property for testcontainers and slf4j.

Closes #8, #9
  • Loading branch information
Bernd Eckenfels committed Oct 25, 2023
1 parent f24804f commit c092735
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>17</maven.compiler.release>
<version.slf4j>2.0.9</version.slf4j>
<version.testcontainers>1.19.1</version.testcontainers>
</properties>

<dependencies>
Expand All @@ -24,39 +26,39 @@
<dependency>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
<version>1.7.36</version>
<version>${version.slf4j}</version>
<scope>test</scope>
</dependency>
<!-- make slf4j not complain (configure: -Dorg.slf4j.simpleLogger.defaultLogLevel=info) -->
<dependency>
<artifactId>slf4j-simple</artifactId>
<groupId>org.slf4j</groupId>
<version>1.7.36</version>
<version>${version.slf4j}</version>
<scope>test</scope>
</dependency>

<!-- testcontainer modules for testing various RDBMS -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.19.1</version>
<version>${version.testcontainers}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>oracle-xe</artifactId>
<version>1.19.1</version>
<version>${version.testcontainers}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>1.19.1</version>
<version>${version.testcontainers}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mssqlserver</artifactId>
<version>1.19.1</version>
<version>${version.testcontainers}</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit c092735

Please sign in to comment.