Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialize new LTS line (2.289) #511

Merged
merged 10 commits into from
Jun 5, 2021
32 changes: 32 additions & 0 deletions bom-2.277.x/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?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.277.x</artifactId>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>bom-2.289.x</artifactId>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>ssh-credentials</artifactId>
<version>1.18.1</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>ssh-slaves</artifactId>
<version>1.31.5</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
8 changes: 4 additions & 4 deletions bom-latest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<artifactId>parent</artifactId>
<version>${changelist}</version>
</parent>
<artifactId>bom-2.277.x</artifactId>
<artifactId>bom-2.289.x</artifactId>
<packaging>pom</packaging>
<properties>
<checks-api.version>1.7.0</checks-api.version>
<configuration-as-code-plugin.version>1.51</configuration-as-code-plugin.version>
<git-plugin.version>4.7.1</git-plugin.version>
<pipeline-model-definition-plugin.version>1.8.4</pipeline-model-definition-plugin.version>
<pipeline-model-definition-plugin.version>1.8.5</pipeline-model-definition-plugin.version>
<scm-api-plugin.version>2.6.4</scm-api-plugin.version>
<structs-plugin.version>1.23</structs-plugin.version>
<workflow-api-plugin.version>2.42</workflow-api-plugin.version>
Expand Down Expand Up @@ -332,12 +332,12 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>ssh-credentials</artifactId>
<version>1.18.1</version>
<version>1.18.2</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>ssh-slaves</artifactId>
<version>1.31.5</version>
<version>1.31.7</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion failFast
Original file line number Diff line number Diff line change
@@ -1 +1 @@
true
false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
</scm>
<modules>
<module>bom-latest</module>
<module>bom-2.277.x</module>
<module>bom-2.263.x</module>
<module>bom-2.249.x</module>
<module>bom-2.235.x</module>
Expand Down
11 changes: 9 additions & 2 deletions sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<packaging>hpi</packaging>
<properties>
<changelist>999999-SNAPSHOT</changelist>
<bom>2.277.x</bom>
<jenkins.version>2.277.4</jenkins.version>
<bom>2.289.x</bom>
<jenkins.version>2.289.1</jenkins.version>
<java.level>8</java.level>
</properties>
<repositories>
Expand Down Expand Up @@ -309,6 +309,13 @@
</plugins>
</build>
<profiles>
<profile>
<id>2.277.x</id>
<properties>
<bom>2.277.x</bom>
<jenkins.version>2.277.4</jenkins.version>
</properties>
</profile>
<profile>
<id>2.263.x</id>
<properties>
Expand Down