@@ -25,15 +25,15 @@ The change to require Java 11 is needed to address vulnerability CVE-2023-4759 i
25
25
Run the following command from the root of your project (the source code does not need to be built):
26
26
27
27
``` bash
28
- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.0 :htmlReport
28
+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.1 :htmlReport
29
29
```
30
30
View the report at ``` target/site/refactor-first-report.html ```
31
31
32
32
### [ As Part of GitHub Actions Output] ( https://github.blog/news-insights/product-news/supercharging-github-actions-with-job-summaries/ )
33
33
This will generate a simplified HTML report (no graphs or images) as the output of a GitHub Action step
34
34
``` bash
35
35
mvn -B clean test \
36
- org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.0 :simpleHtmlReport \
36
+ org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.1 :simpleHtmlReport \
37
37
&& echo " $( cat target/site/refactor-first-report.html) " >> $GITHUB_STEP_SUMMARY
38
38
```
39
39
@@ -46,7 +46,7 @@ Add the following to your project in the build section. **showDetails** will sh
46
46
<plugin >
47
47
<groupId >org.hjug.refactorfirst.plugin</groupId >
48
48
<artifactId >refactor-first-maven-plugin</artifactId >
49
- <version >0.6.0 </version >
49
+ <version >0.6.1 </version >
50
50
<!-- optional -->
51
51
<configuration >
52
52
<showDetails >false</showDetails >
@@ -67,7 +67,7 @@ A RefactorFirst report will show up in the site report when you run ```mvn site`
67
67
<plugin >
68
68
<groupId >org.hjug.refactorfirst.plugin</groupId >
69
69
<artifactId >refactor-first-maven-plugin</artifactId >
70
- <version >0.6.0 </version >
70
+ <version >0.6.1 </version >
71
71
</plugin >
72
72
...
73
73
</plugins >
@@ -113,7 +113,7 @@ I would like to create a Gradle plugin and (possibly) support non-conventional p
113
113
and then (assuming Maven is installed) run
114
114
115
115
``` bash
116
- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.0 :htmlReport
116
+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.1 :htmlReport
117
117
```
118
118
119
119
## Viewing the Report
0 commit comments