diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-02-03 15:21:06 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-02-04 08:29:06 +0100 |
commit | c4abedc8615e05322cb6b2015d5e4e74bc625da5 (patch) | |
tree | c6035b6141297b1257f5d321d2507d9eb562e73a /pom.xml | |
parent | 22827addf46dc8c67426fb70a223f2e313741782 (diff) | |
download | sonarqube-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.xml | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -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> |