forked from PurpleZool/slave-setup-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
105 lines (91 loc) · 3.42 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
<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>3.4</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>slave-setup</artifactId>
<packaging>hpi</packaging>
<name>Jenkins Slave SetupPlugin</name>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Slave+Setup+Plugin</url>
<version>1.11.3.2a-SNAPSHOT</version>
<developers>
<developer>
<id>peppe</id>
<name>Giuseppe Landolfi</name>
<email>giuseppe.landolfi@gmail.com</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Mikel Royo</name>
<email>mikel.royo@byteheed.com</email>
<organization>ByteHeed</organization>
<organizationUrl>https://www.byteheed.com</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>Europe/Madrid</timezone>
</contributor>
<contributor>
<name>Aaron Giovannini</name>
<email>aaron.giovannini@byteheed.com</email>
<organization>ByteHeed</organization>
<organizationUrl>https://www.byteheed.com</organizationUrl>
<roles>
<role>Code Analyst</role>
</roles>
<timezone>Europe/Madrid</timezone>
</contributor>
</contributors>
<scm>
<connection>scm:git:ssh://github.com/jenkinsci/slave-setup-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/slave-setup-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/slave-setup-plugin</url>
</scm>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org/content/repositories/releases/</url>
</repository>
</distributionManagement>
<properties>
<jenkins.version>2.7.3</jenkins.version>
<java.level>8</java.level>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<licenses>
<license>
<name>The MIT license</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
</project>