diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-06-13 17:02:07 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-06-13 17:10:36 +0200 |
commit | 12c991a690e5d9c4b4cfd3f0f539ca8346777ecb (patch) | |
tree | 2f53a834df7726f42c55176db7bef7e13379cb51 /pom.xml | |
parent | b749e03a47b3c3980255e251cff452968c95a746 (diff) | |
download | sonarqube-12c991a690e5d9c4b4cfd3f0f539ca8346777ecb.tar.gz sonarqube-12c991a690e5d9c4b4cfd3f0f539ca8346777ecb.zip |
Fix OOM in build
due to https://issues.apache.org/jira/browse/MSOURCES-94
Reverting upgrade to parent 35 and fixing skip of enforcer rules
in quick-build.sh
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -5,7 +5,7 @@ <parent> <groupId>org.sonarsource.parent</groupId> <artifactId>parent</artifactId> - <version>35</version> + <version>34</version> </parent> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonarqube</artifactId> @@ -1089,6 +1089,13 @@ <profiles> <profile> + <id>dev</id> + <properties> + <skipSanityChecks>true</skipSanityChecks> + <enforcer.skip>true</enforcer.skip> + </properties> + </profile> + <profile> <id>release</id> <build> <plugins> |