Skip to content

Commit d7ea2e5

Browse files
authored
Clean up dependency libraries and etc / Improve pom.xml (#329)
* Remove an unused dependency library * Update test dependency libraries * Downgrade littleproxy to 2.0.15 * Replace additionalparam with additionalOptions * Upgrade checkstyle to v9 (#330) * Upgrade checkstyle to v10 * Downgrade checkstyle to v9
1 parent 5e15bd2 commit d7ea2e5

File tree

1 file changed

+14
-20
lines changed

1 file changed

+14
-20
lines changed

pom.xml

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -161,23 +161,17 @@
161161
<dependency>
162162
<groupId>org.immutables</groupId>
163163
<artifactId>value</artifactId>
164-
<version>2.2.10</version>
164+
<version>2.10.1</version>
165165
<scope>provided</scope>
166166
</dependency>
167167

168168
<dependency>
169169
<groupId>org.immutables</groupId>
170170
<artifactId>builder</artifactId>
171-
<version>2.2.10</version>
171+
<version>2.10.1</version>
172172
<scope>provided</scope>
173173
</dependency>
174174

175-
<dependency>
176-
<groupId>javax.annotation</groupId>
177-
<artifactId>javax.annotation-api</artifactId>
178-
<version>1.3.2</version>
179-
</dependency>
180-
181175
<!-- ==================== -->
182176
<!-- Testing dependencies -->
183177
<!-- ==================== -->
@@ -202,14 +196,14 @@
202196
<dependency>
203197
<groupId>org.mockito</groupId>
204198
<artifactId>mockito-core</artifactId>
205-
<version>5.10.0</version>
199+
<version>5.12.0</version>
206200
<scope>test</scope>
207201
</dependency>
208202

209203
<dependency>
210204
<groupId>org.bigtesting</groupId>
211205
<artifactId>fixd</artifactId>
212-
<version>1.0.0</version>
206+
<version>1.0.5</version>
213207
<scope>test</scope>
214208
<exclusions>
215209
<exclusion>
@@ -433,7 +427,7 @@
433427
<source>${project.build.targetJdk}</source>
434428
<encoding>${project.build.sourceEncoding}</encoding>
435429
<maxmemory>${project.build.jvmsize}</maxmemory>
436-
<additionalparam>${javadoc.opts}</additionalparam>
430+
<additionalOptions>${javadoc.opts}</additionalOptions>
437431
</configuration>
438432
<executions>
439433
<execution>
@@ -456,20 +450,20 @@
456450
<goals>
457451
<goal>check</goal>
458452
</goals>
459-
<configuration>
460-
<failOnViolation>true</failOnViolation>
461-
<consoleOutput>true</consoleOutput>
462-
<includeTestSourceDirectory>true</includeTestSourceDirectory>
463-
<configLocation>check-style.xml</configLocation>
464-
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
465-
</configuration>
466453
</execution>
467454
</executions>
455+
<configuration>
456+
<failOnViolation>true</failOnViolation>
457+
<consoleOutput>true</consoleOutput>
458+
<includeTestSourceDirectory>true</includeTestSourceDirectory>
459+
<configLocation>check-style.xml</configLocation>
460+
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
461+
</configuration>
468462
<dependencies>
469463
<dependency>
470464
<groupId>com.puppycrawl.tools</groupId>
471465
<artifactId>checkstyle</artifactId>
472-
<version>8.45.1</version>
466+
<version>9.3</version>
473467
</dependency>
474468
</dependencies>
475469
</plugin>
@@ -518,7 +512,7 @@
518512
<artifactId>umlgraph</artifactId>
519513
<version>5.6</version>
520514
</docletArtifact>
521-
<additionalparam>-views -all</additionalparam>
515+
<additionalOptions>-views -all</additionalOptions>
522516
<useStandardDocletOptions>true</useStandardDocletOptions>
523517
</configuration>
524518
</plugin>

0 commit comments

Comments
 (0)