forked from Inform-Software/sonar-groovy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
84 lines (75 loc) · 2.39 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
<?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>
<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>49</version>
</parent>
<groupId>org.sonarsource.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.6-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Sonar Groovy</name>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>TobiX</id>
<name>Tobias Gruetzmacher</name>
</developer>
<developer>
<id>pmayweg</id>
<name>Patrick Mayweg</name>
</developer>
<developer>
<id>m-g-sonar</id>
<name>Michael Gumowski</name>
</developer>
<developer>
<id>benzonico</id>
<name>Nicolas Peru</name>
</developer>
</developers>
<modules>
<module>sonar-groovy-plugin</module>
<module>groovy-jacoco-previous</module>
</modules>
<scm>
<connection>scm:git:[email protected]:pmayweg/sonar-groovy.git</connection>
<developerConnection>scm:git:[email protected]:pmayweg/sonar-groovy.git</developerConnection>
<url>https://github.com/pmayweg/sonar-groovy</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/pmayweg/sonar-groovy/issues</url>
</issueManagement>
<properties>
<sonar.version>6.7</sonar.version>
<jacoco.previous.version>0.7.4.201502262128</jacoco.previous.version>
<jacoco.version>0.8.2</jacoco.version>
<groovy.version>2.4.16</groovy.version>
<orchestrator.version>3.11</orchestrator.version>
<!-- used for deployment to SonarSource Artifactory -->
<gitRepositoryName>sonar-groovy</gitRepositoryName>
<license.owner>SonarSource SA & Community</license.owner>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>