forked from checkstyle/sonar-checkstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
135 lines (126 loc) · 3.95 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.checkstyle</groupId>
<artifactId>checkstyle-sonar-plugin-parent</artifactId>
<version>3.8-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Checkstyle SonarQube plugin</name>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Checkstyle</name>
<url>http://checkstyle.sourceforge.net</url>
</organization>
<licenses>
<license>
<name>LGPL-3.0</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>romani</id>
<name>Roman Ivanov</name>
<organization>Checkstyle</organization>
<roles>
<role>project admin, lead developer</role>
</roles>
</developer>
<developer>
<id>rnveach</id>
<name>Richard Veach</name>
<organization>Checkstyle</organization>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>godin</id>
<name>Evgeny Mandrikov</name>
<organization>SonarSource</organization>
<roles>
<role>former developer</role>
</roles>
</developer>
<developer>
<id>m-g-sonar</id>
<name>Michael Gumowski</name>
<organization>SonarSource</organization>
<roles>
<role>former developer</role>
</roles>
</developer>
<developer>
<id>benzonico</id>
<name>Nicolas Peru</name>
<organization>SonarSource</organization>
<roles>
<role>former developer</role>
</roles>
</developer>
</developers>
<modules>
<module>checkstyle-sonar-plugin</module>
<module>checkstyle-all</module>
</modules>
<scm>
<connection>scm:git:[email protected]:checkstyle/sonar-checkstyle.git</connection>
<developerConnection>scm:git:[email protected]:checkstyle/sonar-checkstyle.git</developerConnection>
<url>https://github.com/checkstyle/sonar-checkstyle</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/checkstyle/sonar-checkstyle/issues</url>
</issueManagement>
<ciManagement>
<system>travis</system>
<url>https://travis-ci.org/checkstyle/sonar-checkstyle</url>
</ciManagement>
<properties>
<checkstyle.version>7.7</checkstyle.version>
<sonar.version>5.6.6</sonar.version>
<sonar-java.version>3.7</sonar-java.version>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- To be used during development. Run the command-->
<!-- mvn -Pno-validations install -->
<id>no-validations</id>
<properties>
<skipTests>true</skipTests>
<checkstyle.skip>true</checkstyle.skip>
<pmd.skip>true</pmd.skip>
<findbugs.skip>true</findbugs.skip>
<xml.skip>true</xml.skip>
<forbiddenapis.skip>true</forbiddenapis.skip>
<cobertura.skip>true</cobertura.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</profile>
</profiles>
</project>