Skip to content

Commit

Permalink
chore(deps): bump versions (#571)
Browse files Browse the repository at this point in the history
Version bumps
  • Loading branch information
kagkarlsson authored Dec 15, 2024
1 parent b12acde commit 5d71328
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 25 deletions.
24 changes: 11 additions & 13 deletions db-scheduler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@
<!-- Dependencies -->
<cron-utils.version>9.2.1</cron-utils.version>
<hamcrest.version>1.3</hamcrest.version>
<hikaricp.version>4.0.3</hikaricp.version>
<hsqldb.version>2.7.2</hsqldb.version>
<hikaricp.version>6.2.1</hikaricp.version>
<hsqldb.version>2.7.4</hsqldb.version>
<java8-matchers.version>1.6</java8-matchers.version>
<equals-verifier.version>3.14.2</equals-verifier.version>
<bytebuddy.version>1.14.5</bytebuddy.version>
<zonky-pg-embedded.version>2.0.4</zonky-pg-embedded.version>
<postgresql.version>42.5.5</postgresql.version>
<equals-verifier.version>3.17.5</equals-verifier.version>
<bytebuddy.version>1.15.10</bytebuddy.version>
<zonky-pg-embedded.version>2.1.0</zonky-pg-embedded.version>
<slf4j.version>1.7.36</slf4j.version>
<test.excludedTags>compatibility,compatibility-cluster</test.excludedTags>
</properties>
Expand Down Expand Up @@ -226,7 +225,7 @@
<dependency>
<groupId>net.ttddyy</groupId>
<artifactId>datasource-proxy</artifactId>
<version>1.9</version>
<version>1.10.1</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -266,9 +265,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.33</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -280,21 +279,20 @@
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>21.5.0.0</version>
<version>23.6.0.24.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.3.2</version>
<version>3.5.1</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.8.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
46 changes: 34 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,11 @@
<slf4j.version>1.7.36</slf4j.version>
<logback.version>1.2.13</logback.version>
<spring-boot.version>2.7.18</spring-boot.version>
<!-- <spring-boot.version>3.2.4</spring-boot.version>-->
<micrometer.version>1.11.1</micrometer.version>
<gson.version>2.10.1</gson.version>
<jackson.version>2.15.2</jackson.version>
<postgresql.version>42.6.0</postgresql.version>
<guava.version>32.0.1-jre</guava.version>
<micrometer.version>1.14.2</micrometer.version>
<gson.version>2.11.0</gson.version>
<jackson.version>2.18.2</jackson.version>
<postgresql.version>42.7.4</postgresql.version>
<guava.version>33.3.1-jre</guava.version>
</properties>

<modules>
Expand All @@ -64,34 +63,34 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.0</version>
<version>5.11.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-bom</artifactId>
<version>4.11.0</version>
<version>5.14.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>1.19.7</version>
<version>1.20.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Override to make testcontainers work on M1 -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.14.0</version>
<version>5.15.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.17.0</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -241,7 +240,27 @@
</execution>
</executions>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.8.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
Expand Down Expand Up @@ -278,6 +297,9 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
Expand Down

0 comments on commit 5d71328

Please sign in to comment.