forked from magnayn/Hudson-GIT-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
57 lines (54 loc) · 1.78 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
<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.335</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>git</artifactId>
<version>0.7.4-SNAPSHOT</version>
<packaging>hpi</packaging>
<name>Hudson GIT plugin</name>
<description>Integrates Hudson to GIT SCM</description>
<url>http://wiki.hudson-ci.org/display/HUDSON/Git+Plugin</url>
<repositories>
<repository>
<id>jgit-snapshot-repository</id>
<url>http://egit.googlecode.com/svn/maven/snapshot-repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>jgit-releases</id>
<url>http://fisheye4.atlassian.com/browse/~raw,r=trunk/hudson/trunk/hudson/plugins/git/maven-repository</url>
<!--
<url>https://guest:guest@hudson.dev.java.net/svn/hudson/trunk/hudson/plugins/git/maven-repository</url>
-->
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spearce</groupId>
<artifactId>jgit</artifactId>
<!-- SEE README! -->
<version>0.4-47e4af3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>