diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-02-03 15:55:32 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-02-06 16:24:19 +0100 |
commit | ddf74a5a528cfd781c1da8677e88c4bc5cfe6e3a (patch) | |
tree | b7a7e32314c75dbe91905f79e9411781e40826d4 /pom.xml | |
parent | 93b8165202149fa27053f2cc9a36be1b68130237 (diff) | |
download | sonarqube-ddf74a5a528cfd781c1da8677e88c4bc5cfe6e3a.tar.gz sonarqube-ddf74a5a528cfd781c1da8677e88c4bc5cfe6e3a.zip |
SONAR-8646 Embed SonarPHP and SonarPython
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 50 |
1 files changed, 50 insertions, 0 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> |