diff options
Diffstat (limited to 'sonar-application/pom.xml')
-rw-r--r-- | sonar-application/pom.xml | 47 |
1 files changed, 20 insertions, 27 deletions
diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index 3bceb25828e..83058a4ead5 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -17,15 +17,27 @@ <dependencies> <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </dependency> + <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </dependency> + <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <scope>provided</scope> </dependency> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> @@ -46,6 +58,12 @@ <artifactId>logback-core</artifactId> </dependency> <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>sonar-batch-maven-compat</artifactId> + <version>${pom.version}</version> + <scope>runtime</scope> + </dependency> + <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> </dependency> @@ -75,11 +93,6 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>com.h2database</groupId> - <artifactId>h2</artifactId> - <scope>runtime</scope> - </dependency> - <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <scope>runtime</scope> @@ -134,13 +147,6 @@ </dependency> <dependency> <groupId>org.codehaus.sonar.plugins</groupId> - <artifactId>sonar-l10n-en-plugin</artifactId> - <version>${project.version}</version> - <type>sonar-plugin</type> - <scope>runtime</scope> - </dependency> - <dependency> - <groupId>org.codehaus.sonar.plugins</groupId> <artifactId>sonar-email-notifications-plugin</artifactId> <version>${project.version}</version> <type>sonar-plugin</type> @@ -159,13 +165,6 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>org.codehaus.sonar.plugins</groupId> - <artifactId>sonar-maven-batch-plugin</artifactId> - <version>${project.version}</version> - <type>sonar-plugin</type> - <scope>runtime</scope> - </dependency> - <dependency> <groupId>org.sonatype.jsw-binaries</groupId> <artifactId>jsw-binaries</artifactId> <version>3.2.3.6</version> @@ -201,12 +200,6 @@ <artifactId>http-request</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - <scope>test</scope> - </dependency> - </dependencies> <build> @@ -259,8 +252,8 @@ <configuration> <rules> <requireFilesSize> - <minsize>55000000</minsize> - <maxsize>75000000</maxsize> + <minsize>80000000</minsize> + <maxsize>88000000</maxsize> <files> <file>${project.build.directory}/sonarqube-${project.version}.zip</file> </files> |