Skip to content

Commit 29d21f3

Browse files
Adding project names to each Maven module
1 parent e755eec commit 29d21f3

File tree

10 files changed

+20
-0
lines changed

10 files changed

+20
-0
lines changed

change-proneness-ranker/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
1212
<artifactId>change-proneness-ranker</artifactId>
1313

14+
<name>RefactorFirst Change Proneness Ranker</name>
15+
1416
<build>
1517
<testResources>
1618
<testResource>

cli/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<groupId>org.hjug.refactorfirst.report</groupId>
1313
<artifactId>cli</artifactId>
1414

15+
<name>RefactorFirst CLI</name>
16+
1517
<properties>
1618
<maven.compiler.source>11</maven.compiler.source>
1719
<maven.compiler.target>11</maven.compiler.target>

codebase-graph-builder/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<groupId>org.hjug.refactorfirst.codebasegraphbuilder</groupId>
1212
<artifactId>codebase-graph-builder</artifactId>
1313

14+
<name>RefactorFirst Codebase Graph Builder</name>
15+
1416
<dependencyManagement>
1517
<dependencies>
1618
<dependency>

cost-benefit-calculator/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
1212
<artifactId>cost-benefit-calculator</artifactId>
1313

14+
<name>RefactorFirst Cost Benefit Calculator</name>
15+
1416
<dependencies>
1517
<!-- Needed for PMD -->
1618
<dependency>

effort-ranker/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<groupId>org.hjug.refactorfirst.effortranker</groupId>
1212
<artifactId>effort-ranker</artifactId>
1313

14+
<name>RefactorFirst Effort Ranker</name>
15+
1416
<dependencies>
1517
<dependency>
1618
<groupId>net.sourceforge.pmd</groupId>

graph-algorithms/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<groupId>org.hjug.refactorfirst.dsm</groupId>
1212
<artifactId>graph-algorithms</artifactId>
1313

14+
<name>RefactorFirst Graph Algorithms</name>
15+
1416
<description>
1517
Implementation of a DSM that only has JGraphT-Core as a dependency.
1618
Can be used by other projects.

graph-data-generator/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
1212
<artifactId>graph-data-generator</artifactId>
1313

14+
<name>RefactorFirst Graph Data Generator</name>
15+
1416
<dependencies>
1517
<dependency>
1618
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>

refactor-first-maven-plugin/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<artifactId>refactor-first-maven-plugin</artifactId>
1313
<packaging>maven-plugin</packaging>
1414

15+
<name>RefactorFirst Maven Plugin</name>
16+
1517
<dependencies>
1618
<dependency>
1719
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>

report/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<groupId>org.hjug.refactorfirst.report</groupId>
1111
<artifactId>report</artifactId>
1212

13+
<name>RefactorFirst Report</name>
14+
1315
<dependencies>
1416
<dependency>
1517
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>

test-resources/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@
1111
<groupId>org.hjug.refactorfirst.testresources</groupId>
1212
<artifactId>test-resources</artifactId>
1313

14+
<name>RefactorFirst Test Resources</name>
15+
1416
</project>

0 commit comments

Comments
 (0)