Skip to content

Instantly share code, notes, and snippets.

@Crydust
Last active August 29, 2015 14:23
Show Gist options
  • Save Crydust/39caf51f3063a757eaa5 to your computer and use it in GitHub Desktop.
Save Crydust/39caf51f3063a757eaa5 to your computer and use it in GitHub Desktop.
speed up maven build
<profiles>
<profile>
<id>draft</id>
<properties>
<!-- org.apache.maven.plugins:maven-surefire-plugin
org.apache.maven.plugins:maven-failsafe-plugin -->
<skipTests>true</skipTests>
<maven.test.skip>true</maven.test.skip>
<!-- org.apache.maven.plugins:maven-enforcer-plugin -->
<enforcer.skip>true</enforcer.skip>
<!-- org.apache.maven.plugins:maven-jarsigner-plugin -->
<jarsigner.skip>true</jarsigner.skip>
<!-- org.apache.maven.plugins:maven-dependency-plugin -->
<mdep.skip>true</mdep.skip>
<!-- org.apache.maven.plugins:maven-assembly-plugin -->
<assembly.skipAssembly>true</assembly.skipAssembly>
<!-- org.apache.maven.plugins:maven-project-info-reports-plugin -->
<dependency.locations.enabled>false</dependency.locations.enabled>
<!-- org.owasp:dependency-check-maven -->
<skipProvidedScope>true</skipProvidedScope>
<skipRuntimeScope>true</skipRuntimeScope>
<autoupdate>false</autoupdate>
<!-- org.jacoco:jacoco-maven-plugin -->
<jacoco.skip>true</jacoco.skip>
<!-- com.github.wvengen:proguard-maven-plugin -->
<proguard.skip>true</proguard.skip>
</properties>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment