-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpom.xml
91 lines (83 loc) · 3.01 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
<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>
<relativePath>../parent</relativePath>
</parent>
<artifactId>sonar-total-quality-plugin</artifactId>
<packaging>sonar-plugin</packaging>
<version>1.2-SNAPSHOT</version>
<name>Sonar Total Quality Plugin</name>
<description>Provides an overall measure of the quality of the project, linking code quality, design, architecture, and testing (Unit and Integration).</description>
<url>http://docs.codehaus.org/display/SONAR/Total+Quality+Plugin</url>
<inceptionYear>2010</inceptionYear>
<organization>
<name>Martin (e72636) and Emilio Escobar Reyero (escoem)</name>
</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>e72636</id>
<name>Martin</name>
</developer>
<developer>
<id>eescobar</id>
<name>Emilio Escobar Reyero</name>
</developer>
<developer>
<id>ppapapetrou</id>
<name>Patroklos P.Papapetrou</name>
<email>[email protected]</email>
<url>http://gr.linkedin.com/in/ppapapetrou/</url>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:SonarCommunity/sonar-total-quality.git</connection>
<developerConnection>scm:git:[email protected]:SonarCommunity/sonar-total-quality.git</developerConnection>
<url>https://github.com/SonarCommunity/sonar-total-quality</url>
<tag>sonar-total-quality-plugin-1.1</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14363</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://sonarplugins.ci.cloudbees.com/job/total-quality/</url>
</ciManagement>
<properties>
<sonar.pluginClass>org.sonar.plugins.totalquality.TQPlugin</sonar.pluginClass>
<sonar.version>3.0</sonar.version>
<sonar.pluginKey>totalquality</sonar.pluginKey>
<sonar.pluginName>Total Quality</sonar.pluginName>
</properties>
<dependencies>
<dependency>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${sonar.version}</version>
<scope>provided</scope>
</dependency>
<!-- unit tests -->
<dependency>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-testing-harness</artifactId>
<version>${sonar.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>