forked from mmrwoods/jenkins_campfire_plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
67 lines (67 loc) · 2.4 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
<?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.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.319</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>leeroy</artifactId>
<packaging>hpi</packaging>
<version>2.3.6-CP</version>
<name>Leeroy - A Jenkins Campfire Plugin</name>
<description>A Build status publisher that notifies channels on a Campfire server using memes from memegenerator.net</description>
<url>https://github.com/jcmuller/leeroy</url>
<licenses>
<license><name>MIT license</name><comments>All source code is under the MIT license.</comments></license>
</licenses>
<dependencies>
<dependency>
<groupId>org.jvnet.hudson.main</groupId>
<artifactId>maven-plugin</artifactId>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1-rc1</version>
</dependency>
<dependency>
<groupId>org.jvnet.hudson</groupId>
<artifactId>htmlunit</artifactId>
<version>2.2-hudson-10</version>
</dependency>
</dependencies>
<developers>
<developer>
<id>jenslukowski</id>
<name>Jens Lukowski</name>
<email>jens.lukowski@softwareschneiderei.de</email>
<organization>Softwareschneiderei GmbH</organization>
<organizationUrl>http://www.softwareschneiderei.de</organizationUrl>
</developer>
<developer>
<id>thickpaddy</id>
<name>Mark Woods</name>
<email>mark dot woods at jgp</email>
<organization>Jobsgopublic</organization>
<organizationUrl>http://www.jgp.co.uk</organizationUrl>
</developer>
<developer>
<id>jkrall</id>
<name>Joshua Krall</name>
</developer>
<developer>
<id>bgreenlee</id>
<name>Brad Greenlee</name>
</developer>
<developer>
<id>jcmuller</id>
<name>Juan C. Müller</name>
<email>juan@challengepost.com</email>
<organization>ChallengePost</organization>
<organizationUrl>http://www.challengepost.com</organizationUrl>
</developer>
</developers>
</project>