@@ -7,15 +7,16 @@ The graphs generated in the report will look similar to this one:
77![ image info] ( ./RefactorFirst_Sample_Report.png )
88
99## Please Note: Java 11 is now required to run RefactorFirst
10- The change to require Java 11 is needed to address vulnerability CVE-2023 -4759 in JGit
10+ The change to require Java 11 is needed to address vulnerability CVE-2023 -4759 in JGit
11+ Java 21 features are not yet integrated since PMD APIs have changed.
1112
1213## There are several ways to run the analysis on your codebase:
1314
1415### From The Command Line
1516Run the following command from the root of your project (the source code does not need to be built):
1617
1718``` bash
18- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0:report
19+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0-M1 :report
1920```
2021
2122### As Part of a Build
@@ -27,7 +28,7 @@ Add the following to your project in the build section. **showDetails** will sh
2728 <plugin >
2829 <groupId >org.hjug.refactorfirst.plugin</groupId >
2930 <artifactId >refactor-first-maven-plugin</artifactId >
30- <version >0.5.0</version >
31+ <version >0.5.0-M1 </version >
3132 <!-- optional -->
3233 <configuration >
3334 <showDetails >true</showDetails >
@@ -47,7 +48,7 @@ Add the following to your project in the reports section.
4748 <plugin >
4849 <groupId >org.hjug.refactorfirst.plugin</groupId >
4950 <artifactId >refactor-first-maven-plugin</artifactId >
50- <version >0.5.0</version >
51+ <version >0.5.0-M1 </version >
5152 </plugin >
5253 ...
5354 </plugins >
@@ -78,7 +79,7 @@ you will need to add the following to your pom.xml:
7879
7980### As an HTML Report
8081``` bash
81- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0:htmlReport
82+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0-M1 :htmlReport
8283```
8384View the report at ``` target/site/refactor-first-report.html ```
8485
@@ -98,7 +99,7 @@ I would like to create a Gradle plugin and (possibly) support non-conventional p
9899and then (assuming Maven is installed) run
99100
100101``` bash
101- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0:htmlReport
102+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0-M1 :htmlReport
102103```
103104
104105## Viewing the Report
0 commit comments