forked from jenkinsci/skype-im-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
99 lines (87 loc) · 3.39 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
<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.404</version>
</parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>skype-notifier</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>hpi</packaging>
<name>Jenkins Skype notifier plugin</name>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Skype+Plugin</url>
<developers>
<developer>
<id>jbh</id>
<name>Jarle Hjortland</name>
<email>jarlebh@gmail.com</email>
<timezone>+2</timezone>
</developer>
</developers>
<properties>
<version.instant-messaging.plugin>1.16</version.instant-messaging.plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>index.jelly</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>index.jelly</exclude>
</excludes>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>instant-messaging</artifactId>
<version>${version.instant-messaging.plugin}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.eclipse.swt.win32.win32</groupId>
<artifactId>x86</artifactId>
<version>3.3.0-v3346</version>
</dependency>-->
<dependency>
<groupId>org.eclipse.swt.win32.win32</groupId>
<artifactId>x86</artifactId>
<version>3.3.0-v3346</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:ssh://github.com/jenkinsci/skype-im-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/skype-im-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/skype-im-plugin</url>
</scm>
<!-- get every artifact through maven.glassfish.org, which proxies all the artifacts that we need
-->
<repositories>
<repository>
<id>m.g.o-public</id>
<url>http://maven.glassfish.org/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>m.g.o-public</id>
<url>http://maven.glassfish.org/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</project>