--
You received this message because you are subscribed to the Google Groups "SonarLint" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarlint+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarlint/7028a9ce-b438-421a-b207-d8850e42c849%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "SonarLint" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarlint+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarlint/5fd482ba-a6ad-4bd4-a001-32342ec61e3c%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "SonarLint" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarlint+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarlint/619e38ed-5b23-44dd-adf1-d5760ecb8b6d%40googlegroups.com.
diff --git a/plugins/tutorial/java-custom-rules-template/pom.xml b/plugins/tutorial/java-custom-rules-template/pom.xml
index 469f4d7..4b2c474 100644
--- a/plugins/tutorial/java-custom-rules-template/pom.xml
+++ b/plugins/tutorial/java-custom-rules-template/pom.xml
@@ -9,16 +9,23 @@
<packaging>sonar-plugin</packaging>
<properties>
- <sonar.plugin.api.version>4.5.7</sonar.plugin.api.version>
- <java.plugin.version>3.13.1</java.plugin.version>
+ <sonar.plugin.api.version>6.0</sonar.plugin.api.version>
+ <java.plugin.version>4.1</java.plugin.version>
</properties>
<name>Java Custom Rules - Template</name>
<description>Empty template for custom rules</description>
<dependencies>
+
<dependency>
- <groupId>org.codehaus.sonar</groupId>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <version>19.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${sonar.plugin.api.version}</version>
<scope>provided</scope>
@@ -36,18 +43,6 @@
<groupId>org.sonarsource.java</groupId>
<artifactId>java-frontend</artifactId>
<version>${java.plugin.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.sonarsource.sslr-squid-bridge</groupId>
- <artifactId>sslr-squid-bridge</artifactId>
- <version>2.6.1</version>
- <exclusions>
- <exclusion>
- <groupId>org.codehaus.sonar.sslr</groupId>
- <artifactId>sslr-core</artifactId>
- </exclusion>
- </exclusions>
</dependency>
<dependency>
@@ -81,6 +76,12 @@
<version>0.9.30</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.6.2</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
@@ -88,10 +89,11 @@
<plugin>
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
- <version>1.15</version>
+ <version>1.17</version>
<extensions>true</extensions>
<configuration>
<pluginClass>org.sonar.template.java.JavaCustomRulesPlugin</pluginClass>
+ <sonarLintSupported>true</sonarLintSupported>
</configuration>
</plugin>--
You received this message because you are subscribed to the Google Groups "SonarLint" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarlint+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarlint/3b79fe19-c5c2-4ea5-98da-0ae2d773642a%40googlegroups.com.