Skip to content

Commit

Permalink
Adding 'fast' profile for building Che faster by skipping unit tests,…
Browse files Browse the repository at this point in the history
… license checks and other enforcement features (#2733)

Signed-off-by: Ilya Buziuk <ibuziuk@redhat.com>
  • Loading branch information
ibuziuk authored and Tyler Jewell committed Oct 7, 2016
1 parent 494dd7a commit 28f5184
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -849,4 +849,18 @@
<url>https://maven.codenvycorp.com/content/repositories/codenvy-public-snapshots/</url>
</pluginRepository>
</pluginRepositories>
<profiles>
<!-- Profile for building Che faster by skipping unit tests, license checks and other enforcement features -->
<profile>
<id>fast</id>
<properties>
<findbugs.skip>true</findbugs.skip>
<gwt.compiler.localWorkers>2 -T 1C</gwt.compiler.localWorkers>
<license.skip>true</license.skip>
<mdep.analyze.skip>true</mdep.analyze.skip>
<skip-validate-sources>true</skip-validate-sources>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 28f5184

Please sign in to comment.