Skip to content

Commit f8e8374

Browse files
Update version to 0.5.0-M1-SNAPSHOT ahead of release
1 parent 7ca160f commit f8e8374

File tree

11 files changed

+22
-26
lines changed

11 files changed

+22
-26
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1516
Run 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
```
8384
View 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
9899
and 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

change-proneness-ranker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.hjug.refactorfirst</groupId>
77
<artifactId>refactor-first</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.5.0-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>

cli/pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
53
<modelVersion>4.0.0</modelVersion>
64
<parent>
75
<groupId>org.hjug.refactorfirst</groupId>
86
<artifactId>refactor-first</artifactId>
9-
<version>0.4.1-SNAPSHOT</version>
7+
<version>0.5.0-M1-SNAPSHOT</version>
108
</parent>
119

1210
<packaging>jar</packaging>
@@ -58,8 +56,7 @@
5856
</goals>
5957
<configuration>
6058
<transformers>
61-
<transformer
62-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
59+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
6360
<mainClass>org.hjug.refactorfirst.Main</mainClass>
6461
</transformer>
6562
</transformers>

cost-benefit-calculator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.hjug.refactorfirst</groupId>
77
<artifactId>refactor-first</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.5.0-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>

coverage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.hjug.refactorfirst</groupId>
99
<artifactId>refactor-first</artifactId>
10-
<version>0.4.1-SNAPSHOT</version>
10+
<version>0.5.0-M1-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>coverage</artifactId>

effort-ranker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.hjug.refactorfirst</groupId>
77
<artifactId>refactor-first</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.5.0-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>org.hjug.refactorfirst.effortranker</groupId>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>org.hjug.refactorfirst.testresources</groupId>
2222
<artifactId>test-resources</artifactId>
23-
<version>0.4.1-SNAPSHOT</version>
23+
<version>0.5.0-M1-SNAPSHOT</version>
2424
</dependency>
2525

2626
<dependency>

graph-data-generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.hjug.refactorfirst</groupId>
77
<artifactId>refactor-first</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.5.0-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
1717
<artifactId>cost-benefit-calculator</artifactId>
18-
<version>0.4.1-SNAPSHOT</version>
18+
<version>0.5.0-M1-SNAPSHOT</version>
1919
</dependency>
2020
</dependencies>
2121

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.hjug.refactorfirst</groupId>
66
<artifactId>refactor-first</artifactId>
7-
<version>0.4.1-SNAPSHOT</version>
7+
<version>0.5.0-M1-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<url>https://github.com/jimbethancourt/RefactorFirst</url>

refactor-first-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.hjug.refactorfirst</groupId>
77
<artifactId>refactor-first</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.5.0-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>org.hjug.refactorfirst.plugin</groupId>

report/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
53
<modelVersion>4.0.0</modelVersion>
64
<parent>
75
<groupId>org.hjug.refactorfirst</groupId>
86
<artifactId>refactor-first</artifactId>
9-
<version>0.4.1-SNAPSHOT</version>
7+
<version>0.5.0-M1-SNAPSHOT</version>
108
</parent>
119

1210
<groupId>org.hjug.refactorfirst.report</groupId>

0 commit comments

Comments
 (0)