aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2016-02-03 15:21:06 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2016-02-04 08:29:06 +0100
commitc4abedc8615e05322cb6b2015d5e4e74bc625da5 (patch)
treec6035b6141297b1257f5d321d2507d9eb562e73a /pom.xml
parent22827addf46dc8c67426fb70a223f2e313741782 (diff)
downloadsonarqube-c4abedc8615e05322cb6b2015d5e4e74bc625da5.tar.gz
sonarqube-c4abedc8615e05322cb6b2015d5e4e74bc625da5.zip
SONAR-7261 Embed JavaScript and C# plugins
And use latest version of the Java plugin
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 21 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 25cfa3d5653..42262c40460 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,9 @@
<properties>
<sonarUpdateCenter.version>1.13</sonarUpdateCenter.version>
- <sonarJava.version>3.7.1</sonarJava.version>
+ <sonarJava.version>3.9</sonarJava.version>
+ <sonarJavaScript.version>2.10</sonarJavaScript.version>
+ <sonarCSharp.version>4.4</sonarCSharp.version>
<sonarGit.version>1.0</sonarGit.version>
<sonarSvn.version>1.2</sonarSvn.version>
<h2.version>1.3.176</h2.version>
@@ -530,6 +532,7 @@
<artifactId>sonar-java-plugin</artifactId>
<version>${sonarJava.version}</version>
<type>sonar-plugin</type>
+ <!--<scope>provided</scope>-->
<exclusions>
<!-- A banned dependency is bring because java-squid is using maven-project:2.07
This exclusion should be removed when the plugin will no more used maven-project -->
@@ -537,9 +540,26 @@
<groupId>classworlds</groupId>
<artifactId>classworlds</artifactId>
</exclusion>
+ <!-- The mockito version of the Java plugin is not compatible with the mockito version used in SonarQube -->
+ <exclusion>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-all</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
+ <groupId>org.sonarsource.javascript</groupId>
+ <artifactId>sonar-javascript-plugin</artifactId>
+ <version>${sonarJavaScript.version}</version>
+ <type>sonar-plugin</type>
+ </dependency>
+ <dependency>
+ <groupId>org.sonarsource.dotnet</groupId>
+ <artifactId>sonar-csharp-plugin</artifactId>
+ <version>${sonarCSharp.version}</version>
+ <type>sonar-plugin</type>
+ </dependency>
+ <dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>