File tree 2 files changed +18
-6
lines changed
src/main/java/org/jenkinsci/plugins/workflow/support/steps/build
2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >org.jenkins-ci.plugins</groupId >
6
6
<artifactId >plugin</artifactId >
7
- <version >4.86 </version >
7
+ <version >5.5 </version >
8
8
<relativePath />
9
9
</parent >
10
10
<groupId >org.jenkins-ci.plugins</groupId >
40
40
<properties >
41
41
<changelist >999999-SNAPSHOT</changelist >
42
42
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
43
- <jenkins .baseline>2.440 </jenkins .baseline>
44
- <jenkins .version>${jenkins.baseline} .3 </jenkins .version>
43
+ <jenkins .baseline>2.479 </jenkins .baseline>
44
+ <jenkins .version>${jenkins.baseline} .1 </jenkins .version>
45
45
<gitHubRepo >jenkinsci/${project.artifactId}-plugin</gitHubRepo >
46
46
</properties >
47
47
<dependencyManagement >
48
48
<dependencies >
49
49
<dependency >
50
50
<groupId >io.jenkins.tools.bom</groupId >
51
51
<artifactId >bom-${jenkins.baseline}.x</artifactId >
52
- <version >3234.v5ca_5154341ef </version >
52
+ <version >3850.vb_c5319efa_e29 </version >
53
53
<scope >import</scope >
54
54
<type >pom</type >
55
55
</dependency >
56
+ <!-- TODO until in BOM -->
57
+ <dependency >
58
+ <groupId >org.jenkins-ci.plugins.workflow</groupId >
59
+ <artifactId >workflow-cps</artifactId >
60
+ <version >4011.v91e9951fa_d5b_</version >
61
+ </dependency >
62
+ <dependency >
63
+ <groupId >org.jenkins-ci.plugins.workflow</groupId >
64
+ <artifactId >workflow-cps</artifactId >
65
+ <version >4011.v91e9951fa_d5b_</version >
66
+ <classifier >tests</classifier >
67
+ </dependency >
56
68
</dependencies >
57
69
</dependencyManagement >
58
70
<dependencies >
Original file line number Diff line number Diff line change 50
50
import org .kohsuke .stapler .DataBoundConstructor ;
51
51
import org .kohsuke .stapler .DataBoundSetter ;
52
52
import org .kohsuke .stapler .QueryParameter ;
53
- import org .kohsuke .stapler .StaplerRequest ;
53
+ import org .kohsuke .stapler .StaplerRequest2 ;
54
54
55
55
public class BuildTriggerStep extends Step {
56
56
@@ -121,7 +121,7 @@ public static class DescriptorImpl extends StepDescriptor implements CustomDescr
121
121
// Note: This is necessary because the JSON format of the parameters produced by config.jelly when
122
122
// using the snippet generator does not match what would be neccessary for databinding to work automatically.
123
123
// Only called via the snippet generator.
124
- @ Override public Step newInstance (@ Nullable StaplerRequest req , @ NonNull JSONObject formData ) throws FormException {
124
+ @ Override public Step newInstance (@ Nullable StaplerRequest2 req , @ NonNull JSONObject formData ) throws FormException {
125
125
BuildTriggerStep step = (BuildTriggerStep ) super .newInstance (req , formData );
126
126
// Cf. ParametersDefinitionProperty._doBuild:
127
127
Object parameter = formData .get ("parameter" );
You can’t perform that action at this time.
0 commit comments