Skip to content

Commit 8e8b1d0

Browse files
committed
Updated dependencies
1 parent 8ba56fb commit 8e8b1d0

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

build/src/main/resources/pmd.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
<exclude name="UseVarargs"/>
1212
<exclude name="GuardLogStatement"/>
1313
<exclude name="AbstractClassWithoutAbstractMethod"/>
14-
<!-- WORKAROUND: https://github.com/pmd/pmd/issues/4813 -->
15-
<exclude name="SwitchStmtsShouldHaveDefault"/>
1614
<!-- WORKAROUND: https://github.com/pmd/pmd/issues/5025 -->
1715
<exclude name="PreserveStackTrace"/>
1816
</rule>
@@ -133,7 +131,7 @@
133131
<rule ref="category/java/performance.xml">
134132
<exclude name="AvoidInstantiatingObjectsInLoops"/>
135133
<exclude name="ConsecutiveLiteralAppends"/>
136-
<exclude name="TooFewBranchesForASwitchStatement"/>
134+
<exclude name="TooFewBranchesForSwitch"/>
137135
</rule>
138136
<rule ref="category/java/security.xml"/>
139137
</ruleset>

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@
5858
<rootBaseDir>${project.basedir}</rootBaseDir>
5959
<!-- <license.verbose>true</license.verbose>-->
6060
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
61-
<maven.version>3.9.6</maven.version>
61+
<maven.version>3.9.9</maven.version>
6262
<maven.compiler.release>21</maven.compiler.release>
63-
<guava.version>33.3.0-jre</guava.version>
63+
<guava.version>33.3.1-jre</guava.version>
6464
<error_prone_annotations.version>2.26.1</error_prone_annotations.version>
65-
<jackson.version>2.17.2</jackson.version>
66-
<slf4j.version>2.0.11</slf4j.version>
65+
<jackson.version>2.18.1</jackson.version>
66+
<slf4j.version>2.0.16</slf4j.version>
6767
<testng.version>7.10.2</testng.version>
6868
<jmh.version>1.37</jmh.version>
69-
<pmd.version>7.5.0</pmd.version>
69+
<pmd.version>7.7.0</pmd.version>
7070
</properties>
7171

7272
<dependencyManagement>
@@ -94,7 +94,7 @@
9494
<dependency>
9595
<groupId>org.apache.maven</groupId>
9696
<artifactId>maven-core</artifactId>
97-
<version>3.9.6</version>
97+
<version>3.9.9</version>
9898
</dependency>
9999
<dependency>
100100
<groupId>com.google.guava</groupId>
@@ -119,7 +119,7 @@
119119
<dependency>
120120
<groupId>ch.qos.logback</groupId>
121121
<artifactId>logback-classic</artifactId>
122-
<version>1.5.8</version>
122+
<version>1.5.12</version>
123123
</dependency>
124124
<dependency>
125125
<groupId>com.github.javaparser</groupId>
@@ -144,7 +144,7 @@
144144
<dependency>
145145
<groupId>com.github.cowwoc.pouch</groupId>
146146
<artifactId>core</artifactId>
147-
<version>4.6-SNAPSHOT</version>
147+
<version>5.0</version>
148148
</dependency>
149149
<dependency>
150150
<groupId>org.twdata.maven</groupId>
@@ -185,7 +185,7 @@
185185
<plugin>
186186
<groupId>org.apache.maven.plugins</groupId>
187187
<artifactId>maven-javadoc-plugin</artifactId>
188-
<version>3.10.0</version>
188+
<version>3.10.1</version>
189189
<executions>
190190
<execution>
191191
<id>default-cli</id>
@@ -228,7 +228,7 @@
228228
<plugin>
229229
<groupId>org.apache.maven.plugins</groupId>
230230
<artifactId>maven-surefire-plugin</artifactId>
231-
<version>3.5.0</version>
231+
<version>3.5.1</version>
232232
</plugin>
233233
<plugin>
234234
<groupId>org.apache.maven.plugins</groupId>
@@ -263,7 +263,7 @@
263263
<plugin>
264264
<groupId>org.apache.maven.plugins</groupId>
265265
<artifactId>maven-dependency-plugin</artifactId>
266-
<version>3.8.0</version>
266+
<version>3.8.1</version>
267267
</plugin>
268268
<plugin>
269269
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)