Skip to content

Commit

Permalink
Init 2.440.1 (#2850)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored Jan 20, 2024
1 parent c7bfe4c commit b79a1d3
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 111 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ If you are interested in a Bill of Materials for Jenkins core components, see [t
After [selecting your plugin’s LTS baseline](https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/):

```xml
<jenkins.version>2.401.3</jenkins.version>
<jenkins.version>2.414.3</jenkins.version>
```

just import the [latest BOM](https://repo.jenkins-ci.org/public/io/jenkins/tools/bom) from that line:
Expand All @@ -24,7 +24,7 @@ just import the [latest BOM](https://repo.jenkins-ci.org/public/io/jenkins/tools
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.401.x</artifactId>
<artifactId>bom-2.414.x</artifactId>
<version>…</version>
<scope>import</scope>
<type>pom</type>
Expand Down
100 changes: 0 additions & 100 deletions bom-2.401.x/pom.xml

This file was deleted.

2 changes: 1 addition & 1 deletion bom-2.426.x/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>bom-weekly</artifactId>
<artifactId>bom-2.440.x</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
Expand Down
22 changes: 22 additions & 0 deletions bom-2.440.x/pom.xml
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.440.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>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
</licenses>
<modules>
<module>bom-weekly</module>
<module>bom-2.440.x</module>
<module>bom-2.426.x</module>
<module>bom-2.414.x</module>
<module>bom-2.401.x</module>
<module>sample-plugin</module>
</modules>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
Expand Down
14 changes: 7 additions & 7 deletions sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,13 @@
</build>
<profiles>
<!-- Use .1 of most recent active line, and .3 (or later) of previous lines: https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/#choosing-a-version -->
<profile>
<id>2.440.x</id>
<properties>
<bom>2.440.x</bom>
<jenkins.version>2.440</jenkins.version>
</properties>
</profile>
<profile>
<id>2.426.x</id>
<properties>
Expand All @@ -991,12 +998,5 @@
<jenkins.version>2.414.3</jenkins.version>
</properties>
</profile>
<profile>
<id>2.401.x</id>
<properties>
<bom>2.401.x</bom>
<jenkins.version>2.401.3</jenkins.version>
</properties>
</profile>
</profiles>
</project>

0 comments on commit b79a1d3

Please sign in to comment.