forked from pmayweg/sonar-groovy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
71 lines (63 loc) · 2.1 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
<?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>36</version>
</parent>
<groupId>org.sonarsource.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.6-RC2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Sonar Groovy</name>
<inceptionYear>2010</inceptionYear>
<organization>
<name>SonarSource</name>
<url>http://www.sonarsource.com</url>
</organization>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<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:git@github.com:pmayweg/sonar-groovy.git</connection>
<developerConnection>scm:git:git@github.com: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>5.6</sonar.version>
<jacoco.previous.version>0.7.4.201502262128</jacoco.previous.version>
<jacoco.version>0.7.5.201505241946</jacoco.version>
<groovy.version>2.4.13</groovy.version>
<orchestrator.version>3.11</orchestrator.version>
<!-- used for deployment to SonarSource Artifactory -->
<gitRepositoryName>sonar-groovy</gitRepositoryName>
</properties>
</project>