Skip to content

Commit

Permalink
[JENKINS-73471] Bump io.jenkins.tools.bom:bom-2.440.x from 3221.ve8f7…
Browse files Browse the repository at this point in the history
…b_fdd149d to 3358.vea_fa_1f41504d
  • Loading branch information
Dohbedoh committed Sep 23, 2024
1 parent 66fefa8 commit 8523592
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.440.x</artifactId>
<version>3221.ve8f7b_fdd149d</version>
<version>3358.vea_fa_1f41504d</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import com.cloudbees.jenkins.plugins.bitbucket.endpoints.BitbucketCloudEndpoint;
import com.cloudbees.jenkins.plugins.bitbucket.filesystem.BitbucketSCMFile;
import hudson.model.Action;
import hudson.model.Descriptor;
import hudson.model.FreeStyleBuild;
import hudson.model.FreeStyleProject;
import hudson.model.Result;
Expand Down Expand Up @@ -183,7 +184,11 @@ public DummyWorkflowBranchProjectFactory(String dsl) {

@Override
protected FlowDefinition createDefinition() {
return new CpsFlowDefinition(dsl, true);
try {
return new CpsFlowDefinition(dsl, true);
} catch (Descriptor.FormException e) {
return null;
}
}

@Override
Expand Down

0 comments on commit 8523592

Please sign in to comment.