Skip to content

Commit 8a8a16b

Browse files
committed
Updated dependencies
1 parent b73464f commit 8a8a16b

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

benchmark/assertj/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<dependency>
1919
<groupId>org.assertj</groupId>
2020
<artifactId>assertj-core</artifactId>
21-
<version>3.25.3</version>
2221
</dependency>
2322
</dependencies>
2423
</project>

guava/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
-->
6666
<offlineLink>
6767
<url>https://cowwoc.github.io/requirements.java/${project.version}/docs/api/</url>
68-
<location>${project.basedir}/../java/target/apidocs</location>
68+
<location>${rootBaseDir}/guava/target/apidocs/</location>
6969
</offlineLink>
7070
</offlineLinks>
7171
<excludePackageNames>

jackson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
-->
6767
<offlineLink>
6868
<url>https://cowwoc.github.io/requirements.java/${project.version}/docs/api/</url>
69-
<location>${project.basedir}/../java/target/apidocs</location>
69+
<location>${rootBaseDir}/java/target/apidocs/</location>
7070
</offlineLink>
7171
</offlineLinks>
7272
<excludePackageNames>

pom.xml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,9 @@
6464
<error_prone_annotations.version>2.26.1</error_prone_annotations.version>
6565
<jackson.version>2.17.2</jackson.version>
6666
<slf4j.version>2.0.11</slf4j.version>
67-
<logback.version>1.5.7</logback.version>
6867
<testng.version>7.10.2</testng.version>
6968
<jmh.version>1.37</jmh.version>
70-
<pmd.version>7.4.0</pmd.version>
69+
<pmd.version>7.5.0</pmd.version>
7170
</properties>
7271

7372
<dependencyManagement>
@@ -120,12 +119,12 @@
120119
<dependency>
121120
<groupId>ch.qos.logback</groupId>
122121
<artifactId>logback-classic</artifactId>
123-
<version>${logback.version}</version>
122+
<version>1.5.8</version>
124123
</dependency>
125124
<dependency>
126125
<groupId>com.github.javaparser</groupId>
127126
<artifactId>javaparser-core</artifactId>
128-
<version>3.25.2</version>
127+
<version>3.26.2</version>
129128
</dependency>
130129
<dependency>
131130
<groupId>io.github.java-diff-utils</groupId>
@@ -157,6 +156,11 @@
157156
<artifactId>testng</artifactId>
158157
<version>${testng.version}</version>
159158
</dependency>
159+
<dependency>
160+
<groupId>org.assertj</groupId>
161+
<artifactId>assertj-core</artifactId>
162+
<version>3.26.3</version>
163+
</dependency>
160164
</dependencies>
161165
</dependencyManagement>
162166

@@ -181,6 +185,7 @@
181185
<plugin>
182186
<groupId>org.apache.maven.plugins</groupId>
183187
<artifactId>maven-javadoc-plugin</artifactId>
188+
<!-- WORKAROUND: https://issues.apache.org/jira/browse/MJAVADOC-813 -->
184189
<version>3.8.0</version>
185190
<executions>
186191
<execution>
@@ -224,7 +229,7 @@
224229
<plugin>
225230
<groupId>org.apache.maven.plugins</groupId>
226231
<artifactId>maven-surefire-plugin</artifactId>
227-
<version>3.4.0</version>
232+
<version>3.5.0</version>
228233
</plugin>
229234
<plugin>
230235
<groupId>org.apache.maven.plugins</groupId>
@@ -259,12 +264,12 @@
259264
<plugin>
260265
<groupId>org.apache.maven.plugins</groupId>
261266
<artifactId>maven-dependency-plugin</artifactId>
262-
<version>3.7.1</version>
267+
<version>3.8.0</version>
263268
</plugin>
264269
<plugin>
265270
<groupId>org.apache.maven.plugins</groupId>
266271
<artifactId>maven-pmd-plugin</artifactId>
267-
<version>3.24.0</version>
272+
<version>3.25.0</version>
268273
<dependencies>
269274
<dependency>
270275
<groupId>net.sourceforge.pmd</groupId>

test/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
<dependency>
4444
<groupId>org.assertj</groupId>
4545
<artifactId>assertj-core</artifactId>
46-
<version>3.25.3</version>
4746
</dependency>
4847
<dependency>
4948
<groupId>com.fasterxml.jackson.core</groupId>

0 commit comments

Comments
 (0)