Skip to content

Commit e0a02cb

Browse files
authored
Merge pull request jenkinsci#219 from jglick/bumps
Bump baseline, parent, BOM, etc.
2 parents 2e06765 + 4b2f0e8 commit e0a02cb

File tree

7 files changed

+15
-269
lines changed

7 files changed

+15
-269
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @jenkinsci/workflow-multibranch-plugin-developers

.github/release-drafter.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<extension>
33
<groupId>io.jenkins.tools.incrementals</groupId>
44
<artifactId>git-changelist-maven-extension</artifactId>
5-
<version>1.3</version>
5+
<version>1.4</version>
66
</extension>
77
</extensions>

CHANGELOG.md

Lines changed: 0 additions & 250 deletions
This file was deleted.

Jenkinsfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
buildPlugin(useContainerAgent: true, configurations: [
2-
[ platform: "linux", jdk: "8" ],
3-
[ platform: "windows", jdk: "8" ],
4-
[ platform: "linux", jdk: "11" ]
1+
buildPlugin(
2+
useContainerAgent: true,
3+
configurations: [
4+
[platform: 'linux', jdk: 17],
5+
[platform: 'windows', jdk: 11],
56
])

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Pipeline: Multibranch
22

3-
[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/workflow-multibranch)](https://plugins.jenkins.io/workflow-multibranch)
4-
[![Changelog](https://img.shields.io/github/v/tag/jenkinsci/workflow-multibranch-plugin?label=changelog)](https://github.com/jenkinsci/workflow-multibranch-plugin/blob/master/CHANGELOG.md)
5-
[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/workflow-multibranch?color=blue)](https://plugins.jenkins.io/workflow-multibranch)
6-
73
## Introduction
84

95
Enhances Pipeline plugin to handle branches better by automatically
@@ -24,4 +20,5 @@ To determine the branch being built - use the environment variable
2420

2521
## Version History
2622

27-
See [the changelog](CHANGELOG.md).
23+
For version 2.23 and beyond, see the [GitHub releases](https://github.com/jenkinsci/workflow-multibranch-plugin/releases) list.
24+
For older versions, see the [archive](https://github.com/jenkinsci/workflow-multibranch-plugin/blob/2e067658d86895c4c22005c4022cca53f65f98c1/CHANGELOG.md).

pom.xml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,15 @@ THE SOFTWARE.
2828
<parent>
2929
<groupId>org.jenkins-ci.plugins</groupId>
3030
<artifactId>plugin</artifactId>
31-
<version>4.51</version>
32-
<relativePath />
31+
<version>4.53</version>
32+
<relativePath/>
3333
</parent>
3434
<groupId>org.jenkins-ci.plugins.workflow</groupId>
3535
<artifactId>workflow-multibranch</artifactId>
3636
<version>${changelist}</version>
3737
<packaging>hpi</packaging>
3838
<name>Pipeline: Multibranch</name>
3939
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
40-
<description>Enhances Pipeline plugin to handle branches better by automatically grouping builds from different branches</description>
4140
<licenses>
4241
<license>
4342
<name>MIT License</name>
@@ -64,16 +63,16 @@ THE SOFTWARE.
6463
</pluginRepositories>
6564
<properties>
6665
<changelist>999999-SNAPSHOT</changelist>
67-
<jenkins.version>2.289.1</jenkins.version>
66+
<jenkins.version>2.361.4</jenkins.version>
6867
<no-test-jar>false</no-test-jar>
6968
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
7069
</properties>
7170
<dependencyManagement>
7271
<dependencies>
7372
<dependency>
7473
<groupId>io.jenkins.tools.bom</groupId>
75-
<artifactId>bom-2.289.x</artifactId>
76-
<version>1289.v5c4b_1c43511b_</version>
74+
<artifactId>bom-2.361.x</artifactId>
75+
<version>1750.v0071fa_4c4a_e3</version>
7776
<scope>import</scope>
7877
<type>pom</type>
7978
</dependency>
@@ -139,7 +138,6 @@ THE SOFTWARE.
139138
<dependency>
140139
<groupId>io.jenkins.plugins</groupId>
141140
<artifactId>pipeline-groovy-lib</artifactId>
142-
<version>591.v3a_7f422b_d058</version> <!-- TODO until in BOM -->
143141
<scope>test</scope>
144142
</dependency>
145143
<dependency>
@@ -185,7 +183,7 @@ THE SOFTWARE.
185183
<dependency>
186184
<groupId>org.tmatesoft.svnkit</groupId>
187185
<artifactId>svnkit-cli</artifactId>
188-
<version>1.10.1</version>
186+
<version>1.10.9</version>
189187
<scope>test</scope>
190188
</dependency>
191189
<dependency>

0 commit comments

Comments
 (0)