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:
10
10
Run the following command from the root of your project (the source code does not need to be built):
11
11
12
12
``` 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
14
14
```
15
15
16
16
### As Part of a Build
@@ -22,7 +22,7 @@ Add the following to your project in the build section:
22
22
<plugin >
23
23
<groupId >org.hjug.refactorfirst.plugin</groupId >
24
24
<artifactId >refactor-first-maven-plugin</artifactId >
25
- <version >0.1.0 </version >
25
+ <version >0.1.1 </version >
26
26
</plugin >
27
27
...
28
28
</plugins >
@@ -38,7 +38,7 @@ Add the following to your project in the reports section:
38
38
<plugin >
39
39
<groupId >org.hjug.refactorfirst.plugin</groupId >
40
40
<artifactId >refactor-first-maven-plugin</artifactId >
41
- <version >0.1.0 </version >
41
+ <version >0.1.1 </version >
42
42
</plugin >
43
43
...
44
44
</plugins >
Original file line number Diff line number Diff line change 15
15
<dependency >
16
16
<groupId >net.sourceforge.pmd</groupId >
17
17
<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 >
18
28
</dependency >
19
29
20
30
<dependency >
Original file line number Diff line number Diff line change 18
18
<artifactId >graph-data-generator</artifactId >
19
19
</dependency >
20
20
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
+
21
31
<dependency >
22
32
<groupId >org.apache.maven.reporting</groupId >
23
33
<artifactId >maven-reporting-impl</artifactId >
44
54
<dependency >
45
55
<groupId >org.apache.maven.shared</groupId >
46
56
<artifactId >maven-shared-utils</artifactId >
47
- <version >3.2.0 </version >
57
+ <version >3.3.3 </version >
48
58
</dependency >
49
59
50
60
<dependency >
You can’t perform that action at this time.
0 commit comments