-
Notifications
You must be signed in to change notification settings - Fork 230
/
pom.xml
77 lines (70 loc) · 2.4 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
<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.15</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>environment-dashboard</artifactId>
<version>${revision}${changelist}</version>
<packaging>hpi</packaging>
<name>Environment Dashboard Plugin</name>
<url>https://github.com/jenkinsci/environment-dashboard-plugin</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>vipinsthename</id>
<name>Vipin</name>
<email>[email protected]</email>
</developer>
<developer>
<id>willwh</id>
<name>William Hetherington</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:${gitHubRepo}.git</connection>
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
</scm>
<properties>
<revision>1.1.11</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/environment-dashboard-plugin</gitHubRepo>
<jenkins.version>2.223</jenkins.version>
<java.level>8</java.level>
<spotbugs.failOnError>false</spotbugs.failOnError>
</properties>
<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>job-dsl</artifactId>
<version>1.76</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<!-- TODO once baseline is 2.249.x or greater then remove this version and pull from Jenkins core bom (versions must be in sync) -->
<version>2.4.12</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.196</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jquery</artifactId>
<version>1.12.4-1</version>
</dependency>
</dependencies>
</project>