-
Notifications
You must be signed in to change notification settings - Fork 41
/
pom.xml
55 lines (49 loc) · 1.92 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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>quality-gates-main</artifactId>
<name>Quality Gates Plugin Main</name>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Quality+Gates+Plugin</url>
<version>2.7-SNAPSHOT</version>
<description>Fails the build whenever the Quality Gates criteria in the Sonar analysis aren't met (the project Quality Gates status is different than "Passed")</description>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>maven.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:ssh://github.com/jenkinsci/quality-gates-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/quality-gates-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/quality-gates-plugin</url>
</scm>
<developers>
<developer>
<id>ivanash</id>
<name>Ivana Shekerova</name>
</developer>
<developer>
<id>egrozdani</id>
<name>Eleni Grozdani</name>
</developer>
<developer>
<id>dpd90</id>
<name>Dimitar Pop-Dimitrov</name>
</developer>
</developers>
<modules>
<module>QualityGatesPlugin</module>
</modules>
</project>