-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpom.xml
76 lines (68 loc) · 2.31 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
<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>4.74</version>
</parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>postbuild-task</artifactId>
<packaging>hpi</packaging>
<name>Post build task</name>
<version>${revision}${changelist}</version>
<properties>
<revision>1.10</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/postbuild-task-plugin</gitHubRepo>
<jenkins.version>2.361.4</jenkins.version>
</properties>
<description>Allows to execute a batch/shell task depending on the build log output.</description>
<url>https://github.com/jenkinsci/postbuild-task-plugin</url>
<licenses>
<license>
<name>The MIT license</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>shinodkm</id>
<name>Shinod Mohandas</name>
<email>[email protected]</email>
<organization>Ushus Technologies</organization>
<organizationUrl>http://www.ushustech.com/</organizationUrl>
<timezone>+5.30</timezone>
<roles>
<role>Software Engineer</role>
</roles>
</developer>
<developer>
<id>castorpilot</id>
<name>Fred</name>
<email>[email protected]</email>
</developer>
</developers>
<organization>
<name>Ushus Technologies</name>
<url>http://www.ushustech.com</url>
</organization>
<scm>
<connection>scm:git:ssh://[email protected]/${gitHubRepo}.git</connection>
<developerConnection>scm:git:ssh://[email protected]/${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
</scm>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</project>