forked from magnayn/Hudson-GIT-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
96 lines (87 loc) · 2.8 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
<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.345</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>git</artifactId>
<version>1.1.1-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>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0-beta-1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<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-release-repository</id>
<url>http://egit.googlecode.com/svn/maven</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>guice-maven</id>
<name>guice maven</name>
<url>http://guice-maven.googlecode.com/svn/trunk</url>
</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>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>0.5.1.51-g96b2e76</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>1.5.1</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git://github.com/hudson/Hudson-GIT-plugin.git</connection>
<developerConnection>scm:git:[email protected]:hudson/Hudson-GIT-plugin.git</developerConnection>
<url>http://github.com/hudson/Hudson-GIT-plugin</url>
</scm>
</project>