-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
93 lines (84 loc) · 3.53 KB
/
Copy pathpom.xml
File metadata and controls
93 lines (84 loc) · 3.53 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<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>com.mig82</groupId>
<artifactId>folder-properties</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>hpi</packaging>
<properties>
<!--jenkins.version>2.60.3</jenkins.version-->
<jenkins.version>1.642.4</jenkins.version>
<java.level>8</java.level>
</properties>
<name>Folder Properties</name>
<description>Allows defining properties for folders which are then inherited by all contained jobs.</description>
<!-- The default licence for Jenkins OSS Plugins is MIT. Substitute for the applicable one if needed. -->
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<!-- If you want this to appear on the wiki page:-->
<developers>
<developer>
<id>mig82</id>
<name>Miguelangel Fernandez</name>
<email>miguelangelxfm@gmail.com</email>
</developer>
</developers>
<!-- Assuming you want to host on @jenkinsci:-->
<url>https://wiki.jenkins.io/display/JENKINS/Folder+Properties+Plugin</url>
<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
</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>
<dependencies>
<!--Need this in order to define properties for folders-->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>cloudbees-folder</artifactId>
<version>5.14</version>
</dependency>
<!--Need this in order to be able to test on pipeline jobs-->
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-aggregator</artifactId>
<version>2.0</version>
<scope>test</scope>
</dependency>
<!--Need this in order to avoid org.apache.maven.plugins.enforcer.RequireUpperBoundDeps failing because
of conflicting dependencies on org.jenkins-ci.plugins:scm-api:1.1 and 1.2 in workflow-aggregator-->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>script-security</artifactId>
<version>1.18</version>
</dependency>
<!--Need this to be able to target Jenkins 1.x according to
https://wiki.jenkins.io/display/JENKINS/Structs+plugin-->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
</project>