Skip to content

Commit c78ca12

Browse files
authored
Merge pull request #318 from databendlabs/fix/security-pom
fix: pom in vulnerabilities
2 parents d84a5ba + 5f69ad4 commit c78ca12

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

databend-client/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,25 @@
1616
<properties>
1717
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
1818
<project.build.targetJdk>8</project.build.targetJdk>
19+
<jackson.version>2.15.2</jackson.version>
1920
</properties>
2021
<dependencies>
2122
<dependency>
2223
<groupId>com.fasterxml.jackson.core</groupId>
2324
<artifactId>jackson-annotations</artifactId>
25+
<version>${jackson.version}</version>
2426
</dependency>
2527

2628
<dependency>
2729
<groupId>com.fasterxml.jackson.core</groupId>
2830
<artifactId>jackson-core</artifactId>
31+
<version>${jackson.version}</version>
2932
</dependency>
3033

3134
<dependency>
3235
<groupId>com.fasterxml.jackson.core</groupId>
3336
<artifactId>jackson-databind</artifactId>
37+
<version>${jackson.version}</version>
3438
</dependency>
3539

3640
<dependency>
@@ -47,6 +51,7 @@
4751
<dependency>
4852
<groupId>com.google.guava</groupId>
4953
<artifactId>guava</artifactId>
54+
<version>32.0.1-jre</version>
5055
</dependency>
5156

5257
<dependency>

databend-jdbc/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
<dependency>
5656
<groupId>com.google.guava</groupId>
5757
<artifactId>guava</artifactId>
58+
<version>32.0.1-jre</version>
5859
</dependency>
5960

6061
<!-- https://mvnrepository.com/artifact/com.squareup.okio/okio -->

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
<plugin>
128128
<groupId>org.apache.maven.plugins</groupId>
129129
<artifactId>maven-shade-plugin</artifactId>
130-
<version>3.1.1</version>
130+
<version>3.5.1</version>
131131
<executions>
132132
<execution>
133133
<phase>package</phase>
@@ -254,7 +254,7 @@
254254
<plugin>
255255
<groupId>org.apache.maven.plugins</groupId>
256256
<artifactId>maven-shade-plugin</artifactId>
257-
<version>3.2.4</version>
257+
<version>3.5.1</version>
258258
</plugin>
259259
</plugins>
260260
</pluginManagement>

0 commit comments

Comments
 (0)