-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 2.462.x release line, remove 2.426.x (#3374)
* Replace 2.426 with 2.440 in documentation * Remove 2.426.x line Remove workflow-cps-plugin workaround Fixes #3301 * Add 2.462.x release line * Use 2.452.3 instead of 2.452.1 as 2.452.x Jenkins version As recommended by "choosing a Jenkins version" and past practice. * Document the final 2.426.x BOM version * bom-2.452.x must depend on bom-2.462.x Thanks to @jglick for detecting that mistake. Reported as #3374 (review) * Correct the bom-2.426.x final version in README Easier for me to find those old versions in the README rather than searching the releases list for comments that tell me when a line was dropped. --------- Co-authored-by: Bruno Verachten <[email protected]>
- Loading branch information
1 parent
c5d3d1e
commit 8e82f35
Showing
7 changed files
with
37 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.jenkins.tools.bom</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>${changelist}</version> | ||
</parent> | ||
<artifactId>bom-2.462.x</artifactId> | ||
<packaging>pom</packaging> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>bom-weekly</artifactId> | ||
<version>${project.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters