diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-03-08 18:45:24 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-03-21 16:44:03 +0100 |
commit | 4d3d6b2504673128263eadcec82c8fd64f71e4c5 (patch) | |
tree | 037a32442fc3f898cb36447e703de6d45a741a75 /sonar-application/pom.xml | |
parent | 37c03b26859c6ad3b56442b7f5a0e039526f5eb5 (diff) | |
download | sonarqube-4d3d6b2504673128263eadcec82c8fd64f71e4c5.tar.gz sonarqube-4d3d6b2504673128263eadcec82c8fd64f71e4c5.zip |
SONAR-7435 add CE process, never stops but does nothing yet
Diffstat (limited to 'sonar-application/pom.xml')
-rw-r--r-- | sonar-application/pom.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index b2126dc6da3..6fa92bcabb7 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -56,6 +56,12 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> + <artifactId>sonar-ce</artifactId> + <version>${project.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>sonar-scanner-engine-shaded</artifactId> <version>${project.version}</version> <scope>provided</scope> @@ -232,8 +238,8 @@ <configuration> <rules> <requireFilesSize> - <minsize>105000000</minsize> - <maxsize>125000000</maxsize> + <minsize>110000000</minsize> + <maxsize>120000000</maxsize> <files> <file>${project.build.directory}/sonarqube-${project.version}.zip</file> </files> |