@@ -32,15 +32,15 @@ If you use an old JDK release of your chosen Java version, you may encounter iss
3232Run the following command from the root of your project (the source code does not need to be built):
3333
3434``` bash
35- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.7.0 :htmlReport
35+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.7.1 :htmlReport
3636```
3737View the report at ``` target/site/refactor-first-report.html ```
3838
3939### [ As Part of GitHub Actions Output] ( https://github.blog/news-insights/product-news/supercharging-github-actions-with-job-summaries/ )
4040This will generate a simplified HTML report (no graphs or images) as the output of a GitHub Action step
4141``` bash
4242mvn -B clean test \
43- org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.7.0 :simpleHtmlReport \
43+ org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.7.1 :simpleHtmlReport \
4444&& echo " $( cat target/site/refactor-first-report.html) " >> $GITHUB_STEP_SUMMARY
4545```
4646
@@ -53,7 +53,7 @@ Add the following to your project in the build section. **showDetails** will sh
5353 <plugin >
5454 <groupId >org.hjug.refactorfirst.plugin</groupId >
5555 <artifactId >refactor-first-maven-plugin</artifactId >
56- <version >0.7.0 </version >
56+ <version >0.7.1 </version >
5757 <!-- optional -->
5858 <configuration >
5959 <showDetails >false</showDetails >
@@ -74,7 +74,7 @@ A RefactorFirst report will show up in the site report when you run ```mvn site`
7474 <plugin >
7575 <groupId >org.hjug.refactorfirst.plugin</groupId >
7676 <artifactId >refactor-first-maven-plugin</artifactId >
77- <version >0.7.0 </version >
77+ <version >0.7.1 </version >
7878 </plugin >
7979 ...
8080 </plugins >
@@ -139,7 +139,7 @@ I would like to create a Gradle plugin and (possibly) support non-conventional p
139139and then (assuming Maven is installed) run
140140
141141``` bash
142- mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.7.0 :htmlReport
142+ mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.7.1 :htmlReport
143143```
144144
145145## Viewing the Report
@@ -165,7 +165,7 @@ There is still much to be done. Your feedback and collaboration would be greatl
165165If you find this plugin useful, please star this repository and share with your friends & colleagues and on social media.
166166
167167## Future Plans
168- * Improve class cycle analysis (only field member types and method signature types are currently supported).
168+ * Improve class cycle analysis
169169* Add a Gradle plugin.
170170* Incorporate Unit Test coverage metrics to quickly identify the safety of refactoring classes.
171171* Incorporate bug counts per class to the Impact (Y-Axis) calculation.
0 commit comments