Skip to content

Commit

Permalink
fix:update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeBeFreeman committed Jan 19, 2024
1 parent 18e9d5d commit cd497a4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@
<revision>1.13.0-2021.0.8-SNAPSHOT</revision>

<!-- Spring Framework -->
<spring.framework.version>5.3.25</spring.framework.version>
<spring.framework.version>5.3.31</spring.framework.version>

<!-- Spring Boot -->
<spring.boot.version>2.6.15</spring.boot.version>
<spring.boot.version>2.7.18</spring.boot.version>

<!-- Spring Cloud -->
<spring.cloud.version>2021.0.8</spring.cloud.version>
<spring.cloud.version>2021.0.9</spring.cloud.version>

<!-- Maven Plugin Versions -->
<jacoco.version>0.8.8</jacoco.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ public boolean hasContent() {
return false;
}

@Override
public String getMd5() {
return null;
}

@Override
public void addChangeListener(ConfigFileChangeListener configFileChangeListener) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

import java.io.IOException;
import java.net.ServerSocket;
import java.util.Objects;

import com.tencent.cloud.polaris.config.PolarisConfigAutoConfiguration;
import com.tencent.cloud.polaris.config.PolarisConfigBootstrapAutoConfiguration;
Expand Down Expand Up @@ -67,7 +68,9 @@ static void beforeAll() {

@AfterAll
static void afterAll() throws IOException {
serverSocket.close();
if (Objects.nonNull(serverSocket)) {
serverSocket.close();
}
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import java.lang.reflect.Method;
import java.net.ServerSocket;
import java.util.Collection;
import java.util.Objects;
import java.util.Optional;

import com.tencent.cloud.polaris.config.PolarisConfigBootstrapAutoConfiguration;
Expand Down Expand Up @@ -71,7 +72,9 @@ static void beforeAll() {

@AfterAll
static void afterAll() throws IOException {
serverSocket.close();
if (Objects.nonNull(serverSocket)) {
serverSocket.close();
}
}

@Test
Expand Down

0 comments on commit cd497a4

Please sign in to comment.