-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
63 lines (55 loc) · 2.25 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
<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>hudson-plugin-parent</artifactId>
<version>2.1.2</version>
</parent>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>junit-attachments</artifactId>
<version>1.5-SNAPSHOT</version>
<packaging>hpi</packaging>
<name>JUnit Attachments Plugin</name>
<url>http://wiki.hudson-ci.org/display/HUDSON/JUnit+Attachments+Plugin</url>
<!-- <issueManagement>
<system>JIRA</system>
<url>http://issues.jenkins-ci.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=project+%3D+HUDSON+AND+status+in+%28Open%2C+%22In+Progress%22%2C+Reopened%29+AND+component+%3D+%${project.artifactId}%27</url>
</issueManagement>
-->
<scm>
<connection>scm:git:git://github.com/hudson-plugins/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:hudson-plugins/${project.artifactId}-plugin.git</developerConnection>
<url>http://github.com/hudson-plugins/junit-attachments-plugin</url>
</scm>
<properties>
<!--
compare: http://docs.codehaus.org/display/MAVENUSER/POM+Element+for+Source+File+Encoding
-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<id>huybrechts</id>
<name>Tom Huybrechts</name>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jquery</artifactId>
<version>1.7.2-1</version>
</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>