Skip to content

Commit 8ed1a80

Browse files
Merge pull request #108 from refactorfirst/remove-unused-vulnerable-dependency
Remove jgrapht-core and jgapht-ext from report module
2 parents 7120285 + 1366736 commit 8ed1a80

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

README.md

+5-5
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.6.0:htmlReport
28+
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.1: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.6.0:simpleHtmlReport \
36+
org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.1: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.6.0</version>
49+
<version>0.6.1</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.6.0</version>
70+
<version>0.6.1</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.6.0:htmlReport
116+
mvn org.hjug.refactorfirst.plugin:refactor-first-maven-plugin:0.6.1:htmlReport
117117
```
118118

119119
## Viewing the Report

report/pom.xml

-11
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@
1919
<groupId>com.fasterxml.jackson.core</groupId>
2020
<artifactId>jackson-databind</artifactId>
2121
</dependency>
22-
23-
<dependency>
24-
<groupId>org.jgrapht</groupId>
25-
<artifactId>jgrapht-core</artifactId>
26-
<version>1.3.0</version>
27-
</dependency>
28-
<dependency>
29-
<groupId>org.jgrapht</groupId>
30-
<artifactId>jgrapht-ext</artifactId>
31-
<version>1.3.0</version>
32-
</dependency>
3322
</dependencies>
3423

3524
</project>

0 commit comments

Comments
 (0)