Skip to content

Commit 4326815

Browse files
Added jcommander exclusion to PMD to remove medium security vulnerability
Added jcommander exclusion to PMD to remove medium security vulnerability identified by SNYK Also moved exclusion list to parent pom
1 parent d8b869c commit 4326815

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

effort-ranker/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@
1515
<dependency>
1616
<groupId>net.sourceforge.pmd</groupId>
1717
<artifactId>pmd-java</artifactId>
18-
<!--
19-
Done to accommodate unknown license issue specified in
20-
https://github.com/jimbethancourt/RefactorFirst/issues/2
21-
-->
22-
<exclusions>
23-
<exclusion>
24-
<groupId>net.sourceforge.saxon</groupId>
25-
<artifactId>saxon</artifactId>
26-
</exclusion>
27-
</exclusions>
2818
</dependency>
2919

3020
<dependency>

pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,21 @@
134134
<artifactId>pmd-java</artifactId>
135135
<version>6.30.0</version>
136136
<scope>compile</scope>
137+
138+
<exclusions>
139+
<exclusion>
140+
<groupId>com.beust</groupId>
141+
<artifactId>jcommander</artifactId>
142+
</exclusion>
143+
<!--
144+
Done to accommodate unknown license issue specified in
145+
https://github.com/jimbethancourt/RefactorFirst/issues/2
146+
-->
147+
<exclusion>
148+
<groupId>net.sourceforge.saxon</groupId>
149+
<artifactId>saxon</artifactId>
150+
</exclusion>
151+
</exclusions>
137152
</dependency>
138153
<!--
139154
<dependency>

0 commit comments

Comments
 (0)