Skip to content

Commit 1c0dea1

Browse files
dependabot[bot]oldratlee
authored andcommitted
chore(deps): upgrade dependencies/plugins 🛠️
bump maven-gpg-plugin from 3.2.5 to 3.2.6 (#290) bump commons-io from 2.16.1 to 2.17.0 (#291) bump spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4 (#292) bump annotations from 24.1.0 to 25.0.0 (#293) bump junit-bom from 5.11.0 to 5.11.1 (#294) bump maven-gpg-plugin from 3.2.6 to 3.2.7 (#295) bump maven-javadoc-plugin from 3.10.0 to 3.10.1 (#296) bump maven-surefire-plugin from 3.5.0 to 3.5.1 (#297) bump junit-bom from 5.11.1 to 5.11.2 (#298) bump annotations from 25.0.0 to 26.0.0 (#299) bump kotlin.version from 2.0.20 to 2.0.21 (#300) bump annotations from 26.0.0 to 26.0.1 (#301) bump maven-site-plugin from 3.20.0 to 3.21.0 (#302) bump spotbugs-maven-plugin from 4.8.6.4 to 4.8.6.5 (#303) bump junit-bom from 5.11.2 to 5.11.3 (#304) bump maven-surefire-plugin from 3.5.1 to 3.5.2 (#305) bump maven-javadoc-plugin from 3.10.1 to 3.11.1 (#306) bump spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6 (#307) bump commons-io from 2.17.0 to 2.18.0 (#309) bump kotlin.version from 2.0.21 to 2.1.0 (#310) bump maven-javadoc-plugin from 3.11.1 to 3.11.2 (#311) bump junit-bom from 5.11.3 to 5.11.4 (#312) bump annotations from 26.0.1 to 26.0.2 (#314) bump kotlin.version from 2.1.0 to 2.1.10 (#315) bump spotbugs-maven-plugin from 4.8.6.6 to 4.9.1.0 (#316) bump maven-clean-plugin from 3.4.0 to 3.4.1 (#317) bump junit-bom from 5.11.4 to 5.12.0 (#318) bump maven-compiler-plugin from 3.13.0 to 3.14.0 (#319) bump maven-deploy-plugin from 3.1.3 to 3.1.4 (#320) bump maven-install-plugin from 3.1.3 to 3.1.4 (#321) bump junit-bom from 5.12.0 to 5.12.1 (#323) bump spotbugs-maven-plugin from 4.9.1.0 to 4.9.3.0 (#324)
1 parent 5dbc18f commit 1c0dea1

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

library/src/main/java/com/alibaba/dcm/DnsCacheEntry.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,7 @@ public Date getExpiration() {
5959
* @deprecated use {@link #DnsCacheEntry(String, String[], long)} instead
6060
*/
6161
@Deprecated
62-
public DnsCacheEntry(String host,
63-
@SuppressFBWarnings("EI_EXPOSE_REP2") String[] ips,
64-
@SuppressFBWarnings("EI_EXPOSE_REP2") Date expiration) {
62+
public DnsCacheEntry(String host, @SuppressFBWarnings("EI_EXPOSE_REP2") String[] ips, Date expiration) {
6563
this.host = host;
6664
this.ips = ips;
6765
this.expiration = expiration.getTime();
@@ -72,9 +70,7 @@ public DnsCacheEntry(String host,
7270
*
7371
* @since 1.6.0
7472
*/
75-
public DnsCacheEntry(String host,
76-
@SuppressFBWarnings("EI_EXPOSE_REP2") String[] ips,
77-
long expiration) {
73+
public DnsCacheEntry(String host, @SuppressFBWarnings("EI_EXPOSE_REP2") String[] ips, long expiration) {
7874
this.host = host;
7975
this.ips = ips;
8076
this.expiration = expiration;

pom.xml

+13-13
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@
5959
<!-- need argLine to use `@{argLine}`(e.g. `maven-surefire-plugin`) -->
6060
<argLine/>
6161

62-
<kotlin.version>2.0.20</kotlin.version>
62+
<kotlin.version>2.1.10</kotlin.version>
6363
<kotlin.compiler.jvmTarget>${maven.compiler.source}</kotlin.compiler.jvmTarget>
6464

6565
<!-- testing dependencies versions -->
66-
<junit5.version>5.11.0</junit5.version>
66+
<junit5.version>5.12.1</junit5.version>
6767
<kotest.version>5.8.0</kotest.version>
6868
</properties>
6969

@@ -131,7 +131,7 @@
131131
<dependency>
132132
<groupId>commons-io</groupId>
133133
<artifactId>commons-io</artifactId>
134-
<version>2.16.1</version>
134+
<version>2.18.0</version>
135135
</dependency>
136136
<dependency>
137137
<groupId>org.apache.commons</groupId>
@@ -169,7 +169,7 @@
169169
<!-- https://www.jetbrains.com/help/idea/annotating-source-code.html -->
170170
<groupId>org.jetbrains</groupId>
171171
<artifactId>annotations</artifactId>
172-
<version>24.1.0</version>
172+
<version>26.0.2</version>
173173
<optional>true</optional>
174174
</dependency>
175175

@@ -334,7 +334,7 @@
334334
<plugin>
335335
<groupId>org.apache.maven.plugins</groupId>
336336
<artifactId>maven-clean-plugin</artifactId>
337-
<version>3.4.0</version>
337+
<version>3.4.1</version>
338338
</plugin>
339339
<plugin>
340340
<groupId>org.apache.maven.plugins</groupId>
@@ -366,7 +366,7 @@
366366
<plugin>
367367
<groupId>org.apache.maven.plugins</groupId>
368368
<artifactId>maven-compiler-plugin</artifactId>
369-
<version>3.13.0</version>
369+
<version>3.14.0</version>
370370
<configuration>
371371
<!-- https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#compilerArgs -->
372372
<compilerArgs>
@@ -378,12 +378,12 @@
378378
<plugin>
379379
<groupId>org.apache.maven.plugins</groupId>
380380
<artifactId>maven-javadoc-plugin</artifactId>
381-
<version>3.10.0</version>
381+
<version>3.11.2</version>
382382
</plugin>
383383
<plugin>
384384
<groupId>org.apache.maven.plugins</groupId>
385385
<artifactId>maven-surefire-plugin</artifactId>
386-
<version>3.5.0</version>
386+
<version>3.5.2</version>
387387
<configuration>
388388
<argLine>@{argLine} -Duser.language=en -Duser.country=US</argLine>
389389
</configuration>
@@ -396,17 +396,17 @@
396396
<plugin>
397397
<groupId>org.apache.maven.plugins</groupId>
398398
<artifactId>maven-site-plugin</artifactId>
399-
<version>3.20.0</version>
399+
<version>3.21.0</version>
400400
</plugin>
401401
<plugin>
402402
<groupId>org.apache.maven.plugins</groupId>
403403
<artifactId>maven-install-plugin</artifactId>
404-
<version>3.1.3</version>
404+
<version>3.1.4</version>
405405
</plugin>
406406
<plugin>
407407
<groupId>org.apache.maven.plugins</groupId>
408408
<artifactId>maven-deploy-plugin</artifactId>
409-
<version>3.1.3</version>
409+
<version>3.1.4</version>
410410
</plugin>
411411
</plugins>
412412
</pluginManagement>
@@ -502,7 +502,7 @@
502502
<plugin>
503503
<groupId>org.apache.maven.plugins</groupId>
504504
<artifactId>maven-gpg-plugin</artifactId>
505-
<version>3.2.5</version>
505+
<version>3.2.7</version>
506506
<executions>
507507
<execution>
508508
<id>sign-artifacts</id>
@@ -588,7 +588,7 @@
588588
<plugin>
589589
<groupId>com.github.spotbugs</groupId>
590590
<artifactId>spotbugs-maven-plugin</artifactId>
591-
<version>4.8.6.3</version>
591+
<version>4.9.3.0</version>
592592
<executions>
593593
<execution>
594594
<phase>verify</phase>

0 commit comments

Comments
 (0)