forked from jenkinsci/email-ext-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
118 lines (108 loc) · 3.43 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
<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.356</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>email-ext</artifactId>
<packaging>hpi</packaging>
<version>2.11-SNAPSHOT</version>
<name>Hudson Email Extension Plugin</name>
<url>http://wiki.hudson-ci.org/display/HUDSON/Email-ext+plugin</url>
<properties>
<powermock.version>1.4.5</powermock.version>
</properties>
<developers>
<developer>
<id>ashlux</id>
<name>Ash Lux</name>
<email>[email protected]</email>
</developer>
<developer>
<id>kdsweeney</id>
<name>Kyle Sweeney</name>
</developer>
<developer>
<id>krwalker</id>
<name>K. R. Walker</name>
<email>[email protected]</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jvnet.hudson.main</groupId>
<artifactId>maven-plugin</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jvnet.mock-javamail</groupId>
<artifactId>mock-javamail</artifactId>
<version>1.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock.modules</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock.api</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>powermock-repo</id>
<url>http://powermock.googlecode.com/svn/repo/</url>
</repository>
</repositories>
<scm>
<connection>scm:svn:https://[email protected]/svn/hudson~svn/trunk/hudson/plugins/email-ext</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/hudson~svn/trunk/hudson/plugins/email-ext</developerConnection>
<url>https://hudson.dev.java.net/source/browse/hudson/trunk/hudson/plugins/email-ext</url>
</scm>
<distributionManagement>
<repository>
<id>java.net-m2-repository</id>
<url>http://maven.hudson-labs.org:8081/content/repositories/releases/</url>
</repository>
</distributionManagement>
</project>