File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed
refactor-first-maven-plugin Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ The graph generated in the report will look similar to this one:
1010Run 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
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 >
You can’t perform that action at this time.
0 commit comments