Skip to content

Commit

Permalink
Add Maven profile with id "quickly" for fast building (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalluck authored Sep 6, 2024
1 parent 6077e47 commit 067cd43
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1417,4 +1417,29 @@ junit.jupiter.execution.parallel.config.dynamic.factor=1</configurationParameter
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>quickly</id>
<activation>
<property>
<name>quickly</name>
</property>
</activation>
<properties>
<checkstyle.skip>true</checkstyle.skip>
<editorconfig.skip>true</editorconfig.skip>
<enforcer.skip>true</enforcer.skip>
<formatter.skip>true</formatter.skip>
<impsort.skip>true</impsort.skip>
<jacoco.skip>true</jacoco.skip>
<jandex.skip>true</jandex.skip>
<license.skip>true</license.skip>
<maven.buildNumber.skip>true</maven.buildNumber.skip>
<skipITs>true</skipITs>
<skipTests>true</skipTests>
<sort.skip>true</sort.skip>
<spotbugs.skip>true</spotbugs.skip>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 067cd43

Please sign in to comment.