Skip to content

Commit f51a0b1

Browse files
Renamed RefactorFirstMavenReportData to RefactorFirstMavenCsvReport
- Renamed class RefactorFirstMavenReportData to RefactorFirstMavenCsvReport - Renamed reportdata Maven goal to csvreport
1 parent 6f6e742 commit f51a0b1

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

pom.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,12 @@
240240
</execution>
241241

242242
<execution>
243-
<id>reportdata</id>
243+
<id>csvreport</id>
244244
<phase>verify</phase>
245245
<goals>
246246
<goal>report</goal>
247247
</goals>
248248
</execution>
249-
250-
251-
252249
</executions>
253250
</plugin>
254251

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstMavenReportData.java renamed to refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstMavenCsvReport.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,14 @@
2626

2727
@Slf4j
2828
@Mojo(
29-
name = "reportdata",
29+
name = "csvreport",
3030
defaultPhase = LifecyclePhase.SITE,
3131
requiresDependencyResolution = ResolutionScope.RUNTIME,
3232
requiresProject = true,
3333
threadSafe = true,
3434
inheritByDefault = false
3535
)
36-
public class RefactorFirstMavenReportData extends AbstractMojo {
37-
38-
36+
public class RefactorFirstMavenCsvReport extends AbstractMojo {
3937

4038
@Parameter(property = "showDetails")
4139
private boolean showDetails = false;
@@ -70,8 +68,6 @@ public String getDescription(Locale locale) {
7068

7169
@Override
7270
public void execute() {
73-
74-
7571
StringBuilder fileNameSB = new StringBuilder();
7672
String publishedDate = createFileDateTimeFormatter().format(Instant.now());
7773

0 commit comments

Comments
 (0)