Skip to content

Commit

Permalink
chore: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
peacekeeper committed Oct 22, 2023
1 parent 6ec4758 commit 00803c0
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 27 deletions.
87 changes: 61 additions & 26 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,36 +75,59 @@

<!-- Dependency Versions -->

<did-common-java.version>1.4.0</did-common-java.version>
<did-common-java.version>1.9.0</did-common-java.version>

<slf4j.version>2.0.6</slf4j.version>
<slf4j.version>2.0.9</slf4j.version>
<gson.version>2.10.1</gson.version>
<jackson.databind.version>2.14.2</jackson.databind.version>
<jackson.core.version>2.14.2</jackson.core.version>
<jackson.annotations.version>2.14.2</jackson.annotations.version>
<commons-codec.version>1.15</commons-codec.version>
<jackson.databind.version>2.15.3</jackson.databind.version>
<jackson.core.version>2.15.3</jackson.core.version>
<jackson.annotations.version>2.15.3</jackson.annotations.version>
<commons-codec.version>1.16.0</commons-codec.version>
<httpclient.version>4.5.14</httpclient.version>

<springframework.version>6.0.7</springframework.version>
<springframework.version>6.0.13</springframework.version>
<jakarta.servlet-api.version>5.0.0</jakarta.servlet-api.version>

<junit-jupiter.version>5.9.2</junit-jupiter.version>
<mockito-core.version>3.4.4</mockito-core.version>
<junit-jupiter.version>5.10.0</junit-jupiter.version>
<mockito-core.version>5.6.0</mockito-core.version>
<junit.version>4.13.2</junit.version>

<!-- Plugin Versions -->

<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-war-plugin.version>3.2.3</maven-war-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version>
<maven-scm-plugin.version>1.11.2</maven-scm-plugin.version>
<maven-release-plugin.version>3.0.0-M4</maven-release-plugin.version>
<maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
<maven-war-plugin.version>3.4.0</maven-war-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<maven-dependency-plugin.version>3.6.0</maven-dependency-plugin.version>
<maven-scm-plugin.version>2.0.1</maven-scm-plugin.version>
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-no-snapshots</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6.3</version>
</requireMavenVersion>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources/</directory>
Expand All @@ -126,14 +149,6 @@
</resources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<scmCommentPrefix>[skip ci]</scmCommentPrefix>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -177,6 +192,22 @@
<includeScope>runtime</includeScope>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<scmCommentPrefix>[skip ci]</scmCommentPrefix>
<scmReleaseCommitComment>Latest Release @{releaseLabel}</scmReleaseCommitComment>
<pomFileName>pom.xml</pomFileName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${maven-scm-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
Expand All @@ -187,6 +218,11 @@
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand All @@ -200,7 +236,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>enforce-no-snapshots</id>
Expand Down
2 changes: 1 addition & 1 deletion uni-resolver-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<java.version>17</java.version>
<spring.boot.version>3.1.0</spring.boot.version>
<spring.boot.version>3.1.5</spring.boot.version>
</properties>

<build>
Expand Down

0 comments on commit 00803c0

Please sign in to comment.