2019-10-31 21:43:47 -04:00
|
|
|
<?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"
|
2019-12-05 09:56:52 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>plugins</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>plugins</name>
|
|
|
|
<packaging>hpi</packaging>
|
|
|
|
<description>A sample Jenkins Hello World plugin</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
|
|
<artifactId>plugin</artifactId>
|
|
|
|
<version>2.33</version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<relativePath/>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
|
|
<artifactId>structs</artifactId>
|
|
|
|
<version>${structs.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-step-api</artifactId>
|
|
|
|
<version>${workflow-step-api.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-cps</artifactId>
|
|
|
|
<version>${workflow-cps.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-job</artifactId>
|
|
|
|
<version>${workflow-job.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-basic-steps</artifactId>
|
|
|
|
<version>${workflow-basic-steps.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-durable-task-step</artifactId>
|
|
|
|
<version>${workflow-durable-task-step.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-api</artifactId>
|
|
|
|
<version>${workflow-api.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
|
|
<artifactId>workflow-support</artifactId>
|
|
|
|
<version>${workflow-support.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
|
|
|
|
<jenkins.version>2.7.3</jenkins.version>
|
|
|
|
|
|
|
|
<structs.version>1.7</structs.version>
|
|
|
|
<workflow-step-api.version>2.12</workflow-step-api.version>
|
|
|
|
<workflow-cps.version>2.39</workflow-cps.version>
|
|
|
|
<workflow-job.version>2.11.2</workflow-job.version>
|
|
|
|
<workflow-basic-steps.version>2.6</workflow-basic-steps.version>
|
|
|
|
<workflow-durable-task-step.version>2.13</workflow-durable-task-step.version>
|
|
|
|
<workflow-api.version>2.20</workflow-api.version>
|
|
|
|
<workflow-support.version>2.14</workflow-support.version>
|
|
|
|
</properties>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
</project>
|