Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.14.1</version>
<version>2.17.1</version>
</dependency>

<!-- Postgres driver -->
<!-- Depending the Java version, it could use a different version. -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.1</version>
<version>42.7.2</version>
</dependency>

<!-- Scram hash support -->
<!-- Needed for the new PostgreSQL password encryption. -->
<dependency>
<groupId>com.ongres.scram</groupId>
<artifactId>client</artifactId>
<version>2.0</version>
<version>2.1</version>
</dependency>

<!-- Oracle db driver -->
Expand All @@ -57,7 +57,7 @@
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>9.2.1.jre8</version>
<version>9.2.1.jre15</version>
</dependency>

<!-- Db2 driver -->
Expand All @@ -71,7 +71,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.23</version>
<version>8.0.31</version>
</dependency>

<!-- MariaDB -->
Expand All @@ -92,7 +92,7 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.2</version>
<version>1.9.16</version>
</dependency>

</dependencies>
Expand Down