Skip to content

Commit c460143

Browse files
Update version to 0.5.0-SNAPSHOT
1 parent 6eabbaa commit c460143

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

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.5.0-M4-SNAPSHOT</version>
8+
<version>0.5.0-SNAPSHOT</version>
99
</parent>
1010

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

circular-reference-detector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.hjug.refactorfirst</groupId>
66
<artifactId>refactor-first</artifactId>
7-
<version>0.5.0-M4-SNAPSHOT</version>
7+
<version>0.5.0-SNAPSHOT</version>
88
</parent>
99

1010
<groupId>org.hjug.refactorfirst.circularreferencedetector</groupId>

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.hjug.refactorfirst</groupId>
66
<artifactId>refactor-first</artifactId>
7-
<version>0.5.0-M4-SNAPSHOT</version>
7+
<version>0.5.0-SNAPSHOT</version>
88
</parent>
99

1010
<packaging>jar</packaging>

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.5.0-M4-SNAPSHOT</version>
8+
<version>0.5.0-SNAPSHOT</version>
99
</parent>
1010

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

cost-benefit-calculator/src/main/java/org/hjug/cbc/CostBenefitCalculator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ <T extends Disharmony> List<ScmLogInfo> getRankedChangeProneness(List<T> disharm
249249
log.error("Error reading Git repository contents.", e);
250250
} catch (NullPointerException e) {
251251
log.info("Encountered nested class in a class containing a violation. Class: {}", path);
252-
scmLogInfo = new ScmLogInfo(path, 0,0,0);
252+
scmLogInfo = new ScmLogInfo(path, 0, 0, 0);
253253
}
254254
return scmLogInfo;
255255
})

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.5.0-M4-SNAPSHOT</version>
10+
<version>0.5.0-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.5.0-M4-SNAPSHOT</version>
8+
<version>0.5.0-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.5.0-M4-SNAPSHOT</version>
23+
<version>0.5.0-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.5.0-M4-SNAPSHOT</version>
8+
<version>0.5.0-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.5.0-M4-SNAPSHOT</version>
18+
<version>0.5.0-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.5.0-M4-SNAPSHOT</version>
7+
<version>0.5.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<url>https://github.com/refactorfirst/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.5.0-M4-SNAPSHOT</version>
8+
<version>0.5.0-SNAPSHOT</version>
99
</parent>
1010

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

0 commit comments

Comments
 (0)