Skip to content

Commit de30edd

Browse files
author
Marco Marche
committed
step definition for pipeline plugin - first (bad) implementation
1 parent 51f7afd commit de30edd

File tree

2 files changed

+457
-2
lines changed

2 files changed

+457
-2
lines changed

pom.xml

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
88
<!-- Baseline Jenkins version you use to build and test the plugin. Users must have this version or newer to run. -->
9-
<version>1.580.1</version>
9+
<version>1.609.1</version>
1010
<relativePath />
1111
</parent>
1212

@@ -20,6 +20,7 @@
2020
<maven-hpi-plugin.version>1.112</maven-hpi-plugin.version>
2121
<maven-deploy-plugin.version>2.6</maven-deploy-plugin.version>
2222
<wagon-http.version>2.10</wagon-http.version>
23+
<workflow.version>1.11</workflow.version>
2324
</properties>
2425

2526
<name>Bitbucket Build Status Notifier Plugin</name>
@@ -84,6 +85,41 @@
8485
<artifactId>mercurial</artifactId>
8586
<version>1.54</version>
8687
</dependency>
88+
<dependency>
89+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
90+
<artifactId>workflow-step-api</artifactId>
91+
<version>${workflow.version}</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
95+
<artifactId>workflow-cps</artifactId>
96+
<version>${workflow.version}</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
100+
<artifactId>workflow-job</artifactId>
101+
<version>${workflow.version}</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
105+
<artifactId>workflow-aggregator</artifactId>
106+
<version>${workflow.version}</version>
107+
<scope>test</scope>
108+
</dependency>
109+
<dependency>
110+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
111+
<artifactId>workflow-aggregator</artifactId>
112+
<classifier>tests</classifier>
113+
<version>${workflow.version}</version>
114+
<scope>test</scope>
115+
</dependency>
116+
<dependency>
117+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
118+
<artifactId>workflow-step-api</artifactId>
119+
<classifier>tests</classifier>
120+
<version>${workflow.version}</version>
121+
<scope>test</scope>
122+
</dependency>
87123
<dependency>
88124
<groupId>com.google.code.gson</groupId>
89125
<artifactId>gson</artifactId>
@@ -158,4 +194,4 @@
158194
<url>https://repo.jenkins-ci.org/releases</url>
159195
</repository>
160196
</distributionManagement>
161-
</project>
197+
</project>

0 commit comments

Comments
 (0)