forked from SonarSource/sonar-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
90 lines (79 loc) · 2.55 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
<?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.codehaus.sonar-plugins</groupId>
<artifactId>parent</artifactId>
<version>16</version>
</parent>
<groupId>org.codehaus.sonar-plugins.dotnet</groupId>
<artifactId>dotnet</artifactId>
<packaging>pom</packaging>
<version>2.1-SNAPSHOT</version>
<name>Sonar .NET Ecosystem</name>
<inceptionYear>2010</inceptionYear>
<url>http://docs.codehaus.org/display/SONAR/C%23+Plugins+Ecosystem</url>
<organization>
<name>Codehaus Sonar Plugins</name>
<url>http://sonar-plugins.codehaus.org/</url>
</organization>
<developers>
<developer>
<id>fabemn</id>
<name>Fabrice Bellingard</name>
</developer>
<developer>
<id>alex</id>
<name>Alexandre Victoor</name>
</developer>
<developer>
<id>jose</id>
<name>Jose Chillan</name>
</developer>
</developers>
<modules>
<!-- We need to decide what to do with this module...
<module>maven</module>
-->
<module>sonar</module>
<module>tools</module>
</modules>
<scm>
<connection>scm:git:[email protected]:SonarCommunity/sonar-dotnet.git</connection>
<developerConnection>scm:git:[email protected]:SonarCommunity/sonar-dotnet.git</developerConnection>
<url>https://github.com/SonarCommunity/sonar-dotnet</url>
</scm>
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/SONARDOTNT</url>
</issueManagement>
<ciManagement>
<system>Cloudbees</system>
<url>https://sonarplugins.ci.cloudbees.com/job/dotnet/</url>
</ciManagement>
<properties>
<license.owner>Jose Chillan, Alexandre Victoor and SonarSource</license.owner>
<sonar.version>3.0</sonar.version>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
</properties>
<build>
<pluginManagement>
<plugins>
<!-- TO BE REMOVED ONCE THE PARENT POM HAS UPGRADED TO 1.5+ VERSION OF THIS PLUGIN -->
<plugin>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<version>1.5</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<modules>
<module>distribution</module>
</modules>
</profile>
</profiles>
</project>