Skip to content

Commit

Permalink
fix: pom.xml to reduce vulnerabilities
Browse files Browse the repository at this point in the history
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-7569538
  • Loading branch information
snyk-bot committed Jul 26, 2024
1 parent 5d68c77 commit 8441f88
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<properties>
<dist.dir>${project.build.directory}/dist</dist.dir>
<jackson.version>2.14.0</jackson.version>
<jackson.version>2.15.0</jackson.version>
<java.numeric.version>11</java.numeric.version>
<kafka.version>3.3.2</kafka.version>
<kafka.version>3.7.0</kafka.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>2.0.9</slf4j.version>
</properties>
Expand Down Expand Up @@ -296,7 +296,7 @@
<configuration>
<target>
<chmod dir="${dist.dir}" perm="700">
<include name="**/*.sh" />
<include name="**/*.sh"/>
</chmod>
</target>
</configuration>
Expand Down Expand Up @@ -396,7 +396,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
Expand All @@ -409,7 +409,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down Expand Up @@ -463,10 +463,10 @@
<phase>package</phase>
<configuration>
<target>
<copy file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar" tofile="${dist.dir}/mirus.jar" />
<copy file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar" tofile="${dist.dir}/mirus.jar"/>
<!-- Grant execute permission to all shell scripts in package dir by setting it to 755 -->
<chmod dir="${dist.dir}" perm="755">
<include name="**/*.sh" />
<include name="**/*.sh"/>
</chmod>
</target>
</configuration>
Expand Down

0 comments on commit 8441f88

Please sign in to comment.