Skip to content

Commit

Permalink
add a fast profile to quickly build everything
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
  • Loading branch information
olamy committed Dec 30, 2020
1 parent 3d11d4e commit 960dac2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<maven.deploy.plugin.version>3.0.0-M1</maven.deploy.plugin.version>

<pmd.verbose>true</pmd.verbose>
<pmd.skip>false</pmd.skip>

<!-- testing -->
<it.debug>false</it.debug>
Expand Down Expand Up @@ -264,6 +265,7 @@
<goal>check</goal>
</goals>
<configuration>
<skip>${pmd.skip}</skip>
<verbose>${pmd.verbose}</verbose>
<printFailingErrors>${pmd.verbose}</printFailingErrors>
</configuration>
Expand Down Expand Up @@ -1597,6 +1599,16 @@
</repository>
</repositories>
</profile>
<profile>
<id>fast</id>
<properties>
<skipTests>true</skipTests>
<pmd.skip>true</pmd.skip>
<checkstyle.skip>true</checkstyle.skip>
<enforcer.skip>true</enforcer.skip>
<license.skip>true</license.skip>
</properties>
</profile>
</profiles>

<issueManagement>
Expand Down

0 comments on commit 960dac2

Please sign in to comment.