forked from jenkinsci/campfire-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
105 lines (102 loc) · 3.27 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?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.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.420</version>
</parent>
<artifactId>campfire</artifactId>
<packaging>hpi</packaging>
<version>2.5</version>
<name>Jenkins Campfire Plugin</name>
<description>A build status notifier that sends notifications to Campfire rooms</description>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Campfire+Plugin</url>
<licenses>
<license><name>MIT license</name><comments>All source code is under the MIT license.</comments></license>
</licenses>
<scm>
<connection>scm:git:git://github.com/thickpaddy/jenkins_campfire_plugin.git</connection>
<developerConnection>scm:git:git@github.com:thickpaddy/jenkins_campfire_plugin.git</developerConnection>
<url>http://github.com/thickpaddy/jenkins_campfire_plugin</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>maven-plugin</artifactId>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1-rc1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</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>
<url>https://github.com/thickpaddy</url>
</developer>
<developer>
<id>jkrall</id>
<name>Joshua Krall</name>
<url>https://github.com/jkrall</url>
</developer>
<developer>
<id>bgreenlee</id>
<name>Brad Greenlee</name>
<url>https://github.com/bgreenlee</url>
</developer>
<developer>
<id>hpoydar</id>
<name>Henry Poydar</name>
<url>https://github.com/hpoydar</url>
</developer>
<developer>
<id>mortice</id>
<name>Tom Stuart</name>
<url>https://github.com/mortice</url>
</developer>
<developer>
<id>dbriones</id>
<name>Dante Briones</name>
<url>https://github.com/dbriones</url>
</developer>
</developers>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>