Skip to content

Commit 2e63a53

Browse files
authored
Merge pull request #294 from cicirello/refactor-first
Configured refactor-first-maven-plugin
2 parents b85854e + 76f1fcf commit 2e63a53

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
* Bump core from 2.4.0 to 2.4.3
2222

2323
### CI/CD
24+
* Configured the [refactor-first-maven-plugin](https://github.com/jimbethancourt/RefactorFirst) within a profile in the pom.xml.
2425

2526
### Other
2627

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,30 @@
150150
</plugins>
151151
</build>
152152
</profile>
153+
<profile>
154+
<id>refactor</id>
155+
<build>
156+
<plugins>
157+
<plugin>
158+
<groupId>org.hjug.refactorfirst.plugin</groupId>
159+
<artifactId>refactor-first-maven-plugin</artifactId>
160+
<version>0.3.0</version>
161+
<configuration>
162+
<showDetails>true</showDetails>
163+
</configuration>
164+
<executions>
165+
<execution>
166+
<id>refactor-first</id>
167+
<phase>test</phase>
168+
<goals>
169+
<goal>report</goal>
170+
</goals>
171+
</execution>
172+
</executions>
173+
</plugin>
174+
</plugins>
175+
</build>
176+
</profile>
153177
</profiles>
154178

155179
<issueManagement>

0 commit comments

Comments
 (0)