Skip to content

Commit 939ec01

Browse files
#2 Addressing issues specified in #2
Addressed two critical vulnerabilities Excluded Saxon due to MPL 1.0 license unknown issue reported Updating README.md to specify 0.1.1
1 parent b3628a8 commit 939ec01

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The graph generated in the report will look similar to this one:
1010
Run the following command from the root of your project (the source code does not need to be built):
1111

1212
```bash
13-
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.1.0:report
13+
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.1.1:report
1414
```
1515

1616
### As Part of a Build
@@ -22,7 +22,7 @@ Add the following to your project in the build section:
2222
<plugin>
2323
<groupId>org.hjug.refactorfirst.plugin</groupId>
2424
<artifactId>refactor-first-maven-plugin</artifactId>
25-
<version>0.1.0</version>
25+
<version>0.1.1</version>
2626
</plugin>
2727
...
2828
</plugins>
@@ -38,7 +38,7 @@ Add the following to your project in the reports section:
3838
<plugin>
3939
<groupId>org.hjug.refactorfirst.plugin</groupId>
4040
<artifactId>refactor-first-maven-plugin</artifactId>
41-
<version>0.1.0</version>
41+
<version>0.1.1</version>
4242
</plugin>
4343
...
4444
</plugins>

effort-ranker/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
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>
1828
</dependency>
1929

2030
<dependency>

refactor-first-maven-plugin/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@
1818
<artifactId>graph-data-generator</artifactId>
1919
</dependency>
2020

21+
<!--
22+
Added to address https://snyk.io/vuln/SNYK-JAVA-COMMONSCOLLECTIONS-30078
23+
Commons collections is used in maven-reporting-impl
24+
-->
25+
<dependency>
26+
<groupId>commons-collections</groupId>
27+
<artifactId>commons-collections</artifactId>
28+
<version>3.2.2</version>
29+
</dependency>
30+
2131
<dependency>
2232
<groupId>org.apache.maven.reporting</groupId>
2333
<artifactId>maven-reporting-impl</artifactId>
@@ -44,7 +54,7 @@
4454
<dependency>
4555
<groupId>org.apache.maven.shared</groupId>
4656
<artifactId>maven-shared-utils</artifactId>
47-
<version>3.2.0</version>
57+
<version>3.3.3</version>
4858
</dependency>
4959

5060
<dependency>

0 commit comments

Comments
 (0)