Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit 03cbcc5

Browse files
yongchuncchangxiaohui
authored andcommitted
Fix validate failed bug & New emerging vuls.
Signed-off-by: Yongchun Chang<yongchunc@vmware.com>
1 parent a877f31 commit 03cbcc5

File tree

14 files changed

+38
-54
lines changed

14 files changed

+38
-54
lines changed

aggregator/pom.xml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -48,16 +48,6 @@
4848
<dependency>
4949
<groupId>org.springframework.boot</groupId>
5050
<artifactId>spring-boot-starter-data-redis</artifactId>
51-
<exclusions>
52-
<exclusion>
53-
<artifactId>netty-common</artifactId>
54-
<groupId>io.netty</groupId>
55-
</exclusion>
56-
<exclusion>
57-
<artifactId>netty-buffer</artifactId>
58-
<groupId>io.netty</groupId>
59-
</exclusion>
60-
</exclusions>
6151
</dependency>
6252
<dependency>
6353
<groupId>org.springframework.boot</groupId>
@@ -100,16 +90,6 @@
10090
<version>${junit5.vintage.version}</version>
10191
<scope>test</scope>
10292
</dependency>
103-
<dependency>
104-
<groupId>io.netty</groupId>
105-
<artifactId>netty-common</artifactId>
106-
<version>4.1.94.Final</version>
107-
</dependency>
108-
<dependency>
109-
<groupId>io.netty</groupId>
110-
<artifactId>netty-buffer</artifactId>
111-
<version>4.1.94.Final</version>
112-
</dependency>
11393
<dependency>
11494
<groupId>it.ozimov</groupId>
11595
<artifactId>embedded-redis</artifactId>

common-restclient/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

flowgate-api/pom.xml

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -60,16 +60,6 @@
6060
<dependency>
6161
<groupId>org.springframework.boot</groupId>
6262
<artifactId>spring-boot-starter-data-redis</artifactId>
63-
<exclusions>
64-
<exclusion>
65-
<artifactId>netty-common</artifactId>
66-
<groupId>io.netty</groupId>
67-
</exclusion>
68-
<exclusion>
69-
<artifactId>netty-buffer</artifactId>
70-
<groupId>io.netty</groupId>
71-
</exclusion>
72-
</exclusions>
7363
</dependency>
7464
<dependency>
7565
<groupId>org.springframework.boot</groupId>
@@ -204,16 +194,6 @@
204194
<artifactId>commons-jexl3</artifactId>
205195
<version>3.1</version>
206196
</dependency>
207-
<dependency>
208-
<groupId>io.netty</groupId>
209-
<artifactId>netty-common</artifactId>
210-
<version>4.1.94.Final</version>
211-
</dependency>
212-
<dependency>
213-
<groupId>io.netty</groupId>
214-
<artifactId>netty-buffer</artifactId>
215-
<version>4.1.94.Final</version>
216-
</dependency>
217197
<dependency>
218198
<groupId>org.junit.vintage</groupId>
219199
<artifactId>junit-vintage-engine</artifactId>
@@ -225,6 +205,30 @@
225205
<artifactId>tomcat-embed-core</artifactId>
226206
<version>${tomcat-embed-core.version}</version>
227207
</dependency>
208+
<dependency>
209+
<groupId>org.springframework.boot</groupId>
210+
<artifactId>spring-boot-starter-validation</artifactId>
211+
</dependency>
212+
<dependency>
213+
<groupId>com.sun.xml.bind</groupId>
214+
<artifactId>jaxb-core</artifactId>
215+
<version>2.3.0.1</version>
216+
</dependency>
217+
<dependency>
218+
<groupId>javax.xml.bind</groupId>
219+
<artifactId>jaxb-api</artifactId>
220+
<version>2.3.1</version>
221+
</dependency>
222+
<dependency>
223+
<groupId>com.sun.xml.bind</groupId>
224+
<artifactId>jaxb-impl</artifactId>
225+
<version>2.3.1</version>
226+
</dependency>
227+
<dependency>
228+
<groupId>org.javassist</groupId>
229+
<artifactId>javassist</artifactId>
230+
<version>3.29.2-GA</version>
231+
</dependency>
228232
</dependencies>
229233

230234
<build>

flowgate-api/src/main/java/com/vmware/flowgate/verifycert/VRopsAuth.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class VRopsAuth {
1919
public VRopsAuth(SDDCSoftwareConfig config) {
2020
String url = String.format("https://%s/suite-api", config.getServerURL());
2121
this.client = ClientConfig.builder()
22-
.useJson().serverUrl(url).verify(String.valueOf(config.isVerifyCert()))
22+
.useJson().serverUrl(url).verify(String.valueOf(config.isVerifyCert())).useClusterTruststore(true)
2323
.ignoreHostName(!config.isVerifyCert()).useInternalApis(false).build().newClient();
2424
UsernamePassword up = new UsernamePassword(config.getUserName(), config.getPassword());
2525
AuthToken token = client.userAndAuthManagementClient().acquireToken(up);

flowgate-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>org.springframework.data</groupId>
4141
<artifactId>spring-data-commons</artifactId>
42-
<version>2.7.12</version>
42+
<version>2.7.14</version>
4343
</dependency>
4444
</dependencies>
4545
<build>

infoblox-worker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

labsdb-worker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

management/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
</parent>
1919

2020
<properties>

nlyte-worker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

openmanage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.7.12</version>
17+
<version>2.7.14</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

0 commit comments

Comments
 (0)