Skip to content

Commit 7120285

Browse files
Update README.md to specify version 0.6.0
1 parent 9f3fde8 commit 7120285

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ The change to require Java 11 is needed to address vulnerability CVE-2023-4759 i
2525
Run the following command from the root of your project (the source code does not need to be built):
2626

2727
```bash
28-
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0:htmlReport
28+
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.0:htmlReport
2929
```
3030
View the report at ```target/site/refactor-first-report.html```
3131

3232
### [As Part of GitHub Actions Output](https://github.blog/news-insights/product-news/supercharging-github-actions-with-job-summaries/)
3333
This will generate a simplified HTML report (no graphs or images) as the output of a GitHub Action step
3434
```bash
3535
mvn -B clean test \
36-
org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0:simpleHtmlReport \
36+
org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.0:simpleHtmlReport \
3737
&& echo "$(cat target/site/refactor-first-report.html)" >> $GITHUB_STEP_SUMMARY
3838
```
3939

@@ -46,7 +46,7 @@ Add the following to your project in the build section. **showDetails** will sh
4646
<plugin>
4747
<groupId>org.hjug.refactorfirst.plugin</groupId>
4848
<artifactId>refactor-first-maven-plugin</artifactId>
49-
<version>0.5.0</version>
49+
<version>0.6.0</version>
5050
<!-- optional -->
5151
<configuration>
5252
<showDetails>false</showDetails>
@@ -67,7 +67,7 @@ A RefactorFirst report will show up in the site report when you run ```mvn site`
6767
<plugin>
6868
<groupId>org.hjug.refactorfirst.plugin</groupId>
6969
<artifactId>refactor-first-maven-plugin</artifactId>
70-
<version>0.5.0</version>
70+
<version>0.6.0</version>
7171
</plugin>
7272
...
7373
</plugins>
@@ -113,7 +113,7 @@ I would like to create a Gradle plugin and (possibly) support non-conventional p
113113
and then (assuming Maven is installed) run
114114

115115
```bash
116-
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.5.0:htmlReport
116+
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.0:htmlReport
117117
```
118118

119119
## Viewing the Report

0 commit comments

Comments
 (0)