This repository has been archived by the owner on Feb 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
97 lines (97 loc) · 3.65 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>jp.skypencil.guava</groupId>
<artifactId>guava-helper-for-java-8</artifactId>
<version>1.2.1-SNAPSHOT</version>
</parent>
<artifactId>guava-helper-sonarqube-plugin</artifactId>
<name>SonarQube plugin</name>
<description>A SonarQube plugin to help migration from Guava to Java8</description>
<packaging>sonar-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<version>1.20.0.405</version>
<extensions>true</extensions>
<configuration>
<pluginKey>guavamigration</pluginKey>
<pluginName>Guava Migration Helper</pluginName>
<pluginDescription><![CDATA[Support migration from Guava to Java8]]></pluginDescription>
<pluginClass>jp.skypencil.guava.SonarQubePlugin</pluginClass>
<basePlugin>findbugs</basePlugin>
<requirePlugins>findbugs:3.11</requirePlugins><!-- the version introduced SpotBugs 3.1 -->
<pluginUrl>https://github.com/KengoTODA/guava-helper-for-java-8</pluginUrl>
<pluginSourcesUrl>https://github.com/KengoTODA/guava-helper-for-java-8</pluginSourcesUrl>
</configuration>
</plugin>
<plugin>
<groupId>jp.skypencil.sonarqube</groupId>
<artifactId>rule-xml-maven-plugin</artifactId>
<version>0.1.2</version>
<configuration>
<findbugs>../spotbugs-plugin/src/main/resources/findbugs.xml</findbugs>
<messages>../spotbugs-plugin/src/main/resources/messages.xml</messages>
<output>${project.build.outputDirectory}/jp/skypencil/guava/rules.xml</output>
<tags>guava</tags>
</configuration>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.2.0</version>
<configuration>
<plugins>
<plugin>
<groupId>jp.skypencil.guava</groupId>
<artifactId>spotbugs-plugin</artifactId>
<version>${project.version}</version>
</plugin>
</plugins>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>jp.skypencil.guava</groupId>
<artifactId>spotbugs-plugin</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>7.9.1</version><!-- Latest LTS release -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-java-plugin</artifactId>
<version>5.13.1.18282</version><!-- Bundled with SonarQube 7.9 -->
<scope>provided</scope>
</dependency>
</dependencies>
</project>