diff options
-rw-r--r-- | pom.xml | 50 | ||||
-rw-r--r-- | sonar-application/pom.xml | 16 |
2 files changed, 64 insertions, 2 deletions
@@ -53,6 +53,8 @@ <sonarCSharp.version>5.6.0.586</sonarCSharp.version> <sonarGit.version>1.2</sonarGit.version> <sonarSvn.version>1.4.0.522</sonarSvn.version> + <sonarPhp.version>2.9.2.1744</sonarPhp.version> + <sonarPython.version>1.7.0.1195</sonarPython.version> <h2.version>1.3.176</h2.version> <jetty.version>8.1.12.v20130726</jetty.version> <logback.version>1.1.7</logback.version> @@ -593,6 +595,54 @@ </exclusions> </dependency> <dependency> + <groupId>org.sonarsource.php</groupId> + <artifactId>sonar-php-plugin</artifactId> + <version>${sonarPhp.version}</version> + <type>sonar-plugin</type> + <exclusions> + <!-- + no need for transitive dependencies as only the JAR file + is needed for the zip bundle + --> + <exclusion> + <groupId>org.sonarsource.php</groupId> + <artifactId>php-frontend</artifactId> + </exclusion> + <exclusion> + <groupId>org.sonarsource.php</groupId> + <artifactId>php-checks</artifactId> + </exclusion> + <exclusion> + <groupId>com.thoughtworks.xstream</groupId> + <artifactId>xstream</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.sonarsource.python</groupId> + <artifactId>sonar-python-plugin</artifactId> + <version>${sonarPython.version}</version> + <type>sonar-plugin</type> + <exclusions> + <!-- + no need for transitive dependencies as only the JAR file + is needed for the zip bundle + --> + <exclusion> + <groupId>org.sonarsource.python</groupId> + <artifactId>python-squid</artifactId> + </exclusion> + <exclusion> + <groupId>org.sonarsource.python</groupId> + <artifactId>python-checks</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.woodstox</groupId> + <artifactId>woodstox-core-lgpl</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>4.1.0</version> diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index f80328b1a7f..c7c4f47e627 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -127,6 +127,18 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>org.sonarsource.php</groupId> + <artifactId>sonar-php-plugin</artifactId> + <type>sonar-plugin</type> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.sonarsource.python</groupId> + <artifactId>sonar-python-plugin</artifactId> + <type>sonar-plugin</type> + <scope>provided</scope> + </dependency> + <dependency> <!-- do not upgrade because of licensing change --> <groupId>tanukisoft</groupId> <artifactId>wrapper</artifactId> @@ -218,8 +230,8 @@ <configuration> <rules> <requireFilesSize> - <minsize>105000000</minsize> - <maxsize>112000000</maxsize> + <minsize>110000000</minsize> + <maxsize>117000000</maxsize> <files> <file>${project.build.directory}/sonarqube-${project.version}.zip</file> </files> |