forked from jenkinsci/release-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
47 lines (45 loc) · 1.7 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
<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.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.394</version>
</parent>
<artifactId>release</artifactId>
<packaging>hpi</packaging>
<name>Jenkins Release Plugin</name>
<version>1.11-SNAPSHOT</version>
<description>Adds the ability to wrap your job with pre- and post- build steps which are only executed when a manual release build is triggered.</description>
<url>http://wiki.hudson-ci.org/display/HUDSON/Release+Plugin</url>
<scm>
<connection>scm:git:git://github.com/hudson/release-plugin.git</connection>
<developerConnection>scm:git:[email protected]:hudson/release-plugin.git</developerConnection>
</scm>
<developers>
<developer>
<id>petehayes</id>
<name>Peter Hayes</name>
<email>[email protected]</email>
<url>http://spiffysspace.blogspot.com/</url>
<timezone>-6</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jvnet.hudson.main</groupId>
<artifactId>maven-plugin</artifactId>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>dashboard-view</artifactId>
<version>1.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>promoted-builds</artifactId>
<version>1.11</version>
<optional>true</optional>
</dependency>
</dependencies>
</project>