Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cowwoc committed Oct 30, 2024
1 parent 8ba56fb commit 8e8b1d0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar
4 changes: 1 addition & 3 deletions build/src/main/resources/pmd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
<exclude name="UseVarargs"/>
<exclude name="GuardLogStatement"/>
<exclude name="AbstractClassWithoutAbstractMethod"/>
<!-- WORKAROUND: https://github.com/pmd/pmd/issues/4813 -->
<exclude name="SwitchStmtsShouldHaveDefault"/>
<!-- WORKAROUND: https://github.com/pmd/pmd/issues/5025 -->
<exclude name="PreserveStackTrace"/>
</rule>
Expand Down Expand Up @@ -133,7 +131,7 @@
<rule ref="category/java/performance.xml">
<exclude name="AvoidInstantiatingObjectsInLoops"/>
<exclude name="ConsecutiveLiteralAppends"/>
<exclude name="TooFewBranchesForASwitchStatement"/>
<exclude name="TooFewBranchesForSwitch"/>
</rule>
<rule ref="category/java/security.xml"/>
</ruleset>
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@
<rootBaseDir>${project.basedir}</rootBaseDir>
<!-- <license.verbose>true</license.verbose>-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.version>3.9.6</maven.version>
<maven.version>3.9.9</maven.version>
<maven.compiler.release>21</maven.compiler.release>
<guava.version>33.3.0-jre</guava.version>
<guava.version>33.3.1-jre</guava.version>
<error_prone_annotations.version>2.26.1</error_prone_annotations.version>
<jackson.version>2.17.2</jackson.version>
<slf4j.version>2.0.11</slf4j.version>
<jackson.version>2.18.1</jackson.version>
<slf4j.version>2.0.16</slf4j.version>
<testng.version>7.10.2</testng.version>
<jmh.version>1.37</jmh.version>
<pmd.version>7.5.0</pmd.version>
<pmd.version>7.7.0</pmd.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -94,7 +94,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.9.6</version>
<version>3.9.9</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand All @@ -119,7 +119,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.8</version>
<version>1.5.12</version>
</dependency>
<dependency>
<groupId>com.github.javaparser</groupId>
Expand All @@ -144,7 +144,7 @@
<dependency>
<groupId>com.github.cowwoc.pouch</groupId>
<artifactId>core</artifactId>
<version>4.6-SNAPSHOT</version>
<version>5.0</version>
</dependency>
<dependency>
<groupId>org.twdata.maven</groupId>
Expand Down Expand Up @@ -185,7 +185,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.10.1</version>
<executions>
<execution>
<id>default-cli</id>
Expand Down Expand Up @@ -228,7 +228,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -263,7 +263,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.0</version>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 8e8b1d0

Please sign in to comment.