mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
253 lines
8.9 KiB
XML
253 lines
8.9 KiB
XML
|
<?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/xsd/maven-4.0.0.xsd">
|
||
|
<parent>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>plugin</artifactId>
|
||
|
<version>2.21</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.sap.cp.jenkins</groupId>
|
||
|
<artifactId>pipeline-library</artifactId>
|
||
|
<version>0.0.1</version>
|
||
|
|
||
|
<name>SAP CP Piper Library</name>
|
||
|
|
||
|
<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>
|
||
|
<jenkins.version>2.32.3</jenkins.version>
|
||
|
<pipeline.version>2.5</pipeline.version>
|
||
|
<cps.global.lib.version>2.6</cps.global.lib.version>
|
||
|
<workflow-cps-plugin.version>2.28</workflow-cps-plugin.version>
|
||
|
</properties>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-aggregator</artifactId>
|
||
|
<version>${pipeline.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-cps-global-lib</artifactId>
|
||
|
<version>${cps.global.lib.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>http_request</artifactId>
|
||
|
<version>1.8.13</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.jenkins-ci.plugins.workflow/workflow-api -->
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-api</artifactId>
|
||
|
<version>2.12</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.jenkins-ci.plugins.workflow/workflow-support -->
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-support</artifactId>
|
||
|
<version>2.13</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
|
||
|
<!-- plugins from https://github.com/jenkinsci/workflow-cps-global-lib-plugin/blob/master/pom.xml -->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-cps</artifactId>
|
||
|
<version>${workflow-cps-plugin.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>git-server</artifactId>
|
||
|
<version>1.5</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>git-client</artifactId>
|
||
|
<version>1.19.7</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>scm-api</artifactId>
|
||
|
<version>1.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>cloudbees-folder</artifactId>
|
||
|
<version>5.12</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-scm-step</artifactId>
|
||
|
<version>2.3</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.ivy</groupId>
|
||
|
<artifactId>ivy</artifactId>
|
||
|
<version>2.4.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.5</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.jenkins-ci.plugins/ssh-agent -->
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>ssh-agent</artifactId>
|
||
|
<version>1.15</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-job</artifactId>
|
||
|
<version>2.9</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-basic-steps</artifactId>
|
||
|
<version>2.3</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-durable-task-step</artifactId>
|
||
|
<version>2.8</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>git</artifactId>
|
||
|
<version>3.0.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>performance</artifactId>
|
||
|
<version>2.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
||
|
<artifactId>workflow-step-api</artifactId>
|
||
|
<version>2.9</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>pipeline-utility-steps</artifactId>
|
||
|
<version>1.3.0</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.jenkins-ci.plugins</groupId>
|
||
|
<artifactId>subversion</artifactId>
|
||
|
<version>2.7.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.tmatesoft.svnkit</groupId>
|
||
|
<artifactId>svnkit-cli</artifactId>
|
||
|
<version>1.8.14</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!--LesFurets Jenkins Pipeline Unit testing framework: https://github.com/lesfurets/JenkinsPipelineUnit-->
|
||
|
<dependency>
|
||
|
<groupId>com.lesfurets</groupId>
|
||
|
<artifactId>jenkins-pipeline-unit</artifactId>
|
||
|
<version>1.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<sourceDirectory>src</sourceDirectory>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||
|
<version>1.12</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>add-test-source</id>
|
||
|
<phase>generate-sources</phase>
|
||
|
<goals>
|
||
|
<goal>add-test-source</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<sources>
|
||
|
<source>test/java</source>
|
||
|
<source>test/groovy</source>
|
||
|
</sources>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.19.1</version>
|
||
|
<configuration>
|
||
|
<testSourceDirectory>test/java</testSourceDirectory>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.1</version>
|
||
|
<configuration>
|
||
|
<compilerId>groovy-eclipse-compiler</compilerId>
|
||
|
</configuration>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.groovy</groupId>
|
||
|
<artifactId>groovy-eclipse-compiler</artifactId>
|
||
|
<version>2.9.2-01</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.groovy</groupId>
|
||
|
<artifactId>groovy-eclipse-batch</artifactId>
|
||
|
<version>2.4.3-01</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|