Skip to content

Commit 5048eb1

Browse files
committed
fix: pom.xml to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-15365924
1 parent 25d6a1d commit 5048eb1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
<properties>
1313
<dist.dir>${project.build.directory}/dist</dist.dir>
14-
<jackson.version>2.16.2</jackson.version>
14+
<jackson.version>2.18.6</jackson.version>
1515
<java.numeric.version>11</java.numeric.version>
16-
<kafka.version>3.9.1</kafka.version>
16+
<kafka.version>4.0.0</kafka.version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<slf4j.version>2.0.9</slf4j.version>
1919
</properties>
@@ -300,7 +300,7 @@
300300
<configuration>
301301
<target>
302302
<chmod dir="${dist.dir}" perm="700">
303-
<include name="**/*.sh" />
303+
<include name="**/*.sh"/>
304304
</chmod>
305305
</target>
306306
</configuration>
@@ -389,7 +389,7 @@
389389
</goals>
390390
</pluginExecutionFilter>
391391
<action>
392-
<ignore />
392+
<ignore/>
393393
</action>
394394
</pluginExecution>
395395
<pluginExecution>
@@ -402,7 +402,7 @@
402402
</goals>
403403
</pluginExecutionFilter>
404404
<action>
405-
<ignore />
405+
<ignore/>
406406
</action>
407407
</pluginExecution>
408408
</pluginExecutions>
@@ -456,10 +456,10 @@
456456
<phase>package</phase>
457457
<configuration>
458458
<target>
459-
<copy file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar" tofile="${dist.dir}/mirus.jar" />
459+
<copy file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar" tofile="${dist.dir}/mirus.jar"/>
460460
<!-- Grant execute permission to all shell scripts in package dir by setting it to 755 -->
461461
<chmod dir="${dist.dir}" perm="755">
462-
<include name="**/*.sh" />
462+
<include name="**/*.sh"/>
463463
</chmod>
464464
</target>
465465
</configuration>

0 commit comments

Comments
 (0)