Skip to content

Commit 5f182bf

Browse files
Updated to version 0.2.0-SNAPSHOT
1 parent 0c3bfaa commit 5f182bf

File tree

9 files changed

+12
-16
lines changed

9 files changed

+12
-16
lines changed

change-proneness-ranker/pom.xml

+1-1
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.1.2-SNAPSHOT</version>
8+
<version>0.2.0-SNAPSHOT</version>
99
</parent>
1010

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

cost-benefit-calculator/pom.xml

+1-1
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.1.2-SNAPSHOT</version>
8+
<version>0.2.0-SNAPSHOT</version>
99
</parent>
1010

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

coverage/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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

75
<!-- From https://cylab.be/blog/97/compute-code-coverage-for-a-multi-module-maven-project-with-jacoco -->
86

97
<parent>
108
<groupId>org.hjug.refactorfirst</groupId>
119
<artifactId>refactor-first</artifactId>
12-
<version>0.1.2-SNAPSHOT</version>
10+
<version>0.2.0-SNAPSHOT</version>
1311
</parent>
1412

1513
<artifactId>coverage</artifactId>

effort-ranker/pom.xml

+2-2
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.1.2-SNAPSHOT</version>
8+
<version>0.2.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.1.2-SNAPSHOT</version>
23+
<version>0.2.0-SNAPSHOT</version>
2424
</dependency>
2525

2626
<dependency>

graph-data-generator/pom.xml

+2-2
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.1.2-SNAPSHOT</version>
8+
<version>0.2.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.1.2-SNAPSHOT</version>
18+
<version>0.2.0-SNAPSHOT</version>
1919
</dependency>
2020
</dependencies>
2121

pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<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">
43
<modelVersion>4.0.0</modelVersion>
54

65
<groupId>org.hjug.refactorfirst</groupId>
76
<artifactId>refactor-first</artifactId>
8-
<version>0.1.2-SNAPSHOT</version>
7+
<version>0.2.0-SNAPSHOT</version>
98
<packaging>pom</packaging>
109

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

refactor-first-gradle-plugin/pom.xml

+1-1
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.1.2-SNAPSHOT</version>
10+
<version>0.2.0-SNAPSHOT</version>
1111
</parent>
1212

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

refactor-first-maven-plugin/pom.xml

+1-1
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.1.2-SNAPSHOT</version>
8+
<version>0.2.0-SNAPSHOT</version>
99
</parent>
1010

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

test-resources/pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
<parent>
66
<groupId>org.hjug.refactorfirst</groupId>
77
<artifactId>refactor-first</artifactId>
8-
<version>0.1.2-SNAPSHOT</version>
8+
<version>0.2.0-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>org.hjug.refactorfirst.testresources</groupId>
1212
<artifactId>test-resources</artifactId>
1313

14-
1514
</project>

0 commit comments

Comments
 (0)