add a fast profile to quickly build everything
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
3d11d4e071
commit
960dac2a5d
12
pom.xml
12
pom.xml
|
@ -59,6 +59,7 @@
|
||||||
<maven.deploy.plugin.version>3.0.0-M1</maven.deploy.plugin.version>
|
<maven.deploy.plugin.version>3.0.0-M1</maven.deploy.plugin.version>
|
||||||
|
|
||||||
<pmd.verbose>true</pmd.verbose>
|
<pmd.verbose>true</pmd.verbose>
|
||||||
|
<pmd.skip>false</pmd.skip>
|
||||||
|
|
||||||
<!-- testing -->
|
<!-- testing -->
|
||||||
<it.debug>false</it.debug>
|
<it.debug>false</it.debug>
|
||||||
|
@ -264,6 +265,7 @@
|
||||||
<goal>check</goal>
|
<goal>check</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<skip>${pmd.skip}</skip>
|
||||||
<verbose>${pmd.verbose}</verbose>
|
<verbose>${pmd.verbose}</verbose>
|
||||||
<printFailingErrors>${pmd.verbose}</printFailingErrors>
|
<printFailingErrors>${pmd.verbose}</printFailingErrors>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -1597,6 +1599,16 @@
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
</profile>
|
</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>
|
</profiles>
|
||||||
|
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
|
|
Loading…
Reference in New Issue