forked from jenkinsci/tfs-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
183 lines (171 loc) · 6.1 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<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.436</version>
</parent>
<artifactId>tfs</artifactId>
<packaging>hpi</packaging>
<name>Team Foundation Server Plug-in</name>
<version>3.0.2-SNAPSHOT</version>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Team+Foundation+Server+Plugin</url>
<licenses>
<license><name>MIT license</name><comments>All source code is under the MIT license.</comments></license>
<license>
<name>Microsoft Visual Studio Team Foundation Server 2012 Software Development Kit for Java license terms</name>
<url>http://download.microsoft.com/download/5/9/9/5993F89B-AEF0-4381-9CEE-D3D7BA9EA33B/license.html</url>
</license>
<license>
<name>
Apache Commons Codec, Apache Commons Logging, Apache HttpClient, Apache Commons Lang, Apache log4j,
and Apache ServiceMix are licensed by the Apache Foundation under the Apache License, Version 2.0.
</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
<license>
<name>
The Apache Foundation's Xerces Java Parser project is licensed by the
Apache Foundation under the Apache License, Version 1.1.
</name>
<url>http://www.apache.org/licenses/LICENSE-1.1</url>
</license>
<license>
<name>
The Woodstox XML Processor and the StAX API are licensed by their authors under the Apache License, Version 2.0.
</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url></license>
<license>
<name>This product includes software from the Hypersonic SQL DB http://hsqldb.org/.</name>
<url>http://www.hsqldb.org/web/hsqlLicense.html</url>
</license>
<license>
<name>This product includes software from the Cryptix project http://www.cryptix.org/.</name>
<url>http://cryptix.org/LICENSE.TXT</url>
</license>
</licenses>
<developers>
<developer>
<id>redsolo</id>
<name>Erik Ramfelt</name>
<email>[email protected]</email>
<timezone>+1</timezone>
</developer>
<developer>
<id>olivierdagenais</id>
<name>Olivier Dagenais</name>
<email>[email protected]</email>
<timezone>-5</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:ssh://github.com/jenkinsci/tfs-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/tfs-plugin.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url>
</repository>
</distributionManagement>
<!-- see http://groups.google.com/group/hudson-dev/browse_thread/thread/83e34c639eec470a for the rationale behind this -->
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.7</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java15</artifactId>
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<id>java.1.5.check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!--
com.microsoft.tfs.sdk includes its dependencies inline, some of which conflict with those of jenkins-core.
We have to repeat dependencies here to make sure they are considered before those inside the TFS SDK.
-->
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-war</artifactId>
<version>1.436</version>
<type>war</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-core</artifactId>
<version>1.436</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-test-harness</artifactId>
<version>1.436</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>ui-samples-plugin</artifactId>
<version>1.436</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.microsoft.tfs.sdk</groupId>
<artifactId>com.microsoft.tfs.sdk</artifactId>
<version>11.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/com.microsoft.tfs.sdk-11.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</project>