Skip to content

Commit

Permalink
Merge pull request #349 from jonesbusy-automation/plugin-modernizer-tool
Browse files Browse the repository at this point in the history
Require 2.452.4
  • Loading branch information
StefanSpieker authored Jan 12, 2025
2 parents ebdfb00 + 02dd101 commit 5fc693d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.88</version>
<relativePath/>
</parent>

<artifactId>jobConfigHistory</artifactId>
Expand All @@ -32,7 +33,9 @@

<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.387.3</jenkins.version>
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.baseline>2.452</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.4</jenkins.version>
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
<maven-surefire-report-plugin.version>${maven-surefire-plugin.version}</maven-surefire-report-plugin.version>
<maven-hpi-plugin.injectedTestName>InjectedIT</maven-hpi-plugin.injectedTestName>
Expand All @@ -46,8 +49,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.387.x</artifactId>
<version>2543.vfb_1a_5fb_9496d</version>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>3875.v1df09947cde6</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -72,7 +75,6 @@
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>maven-plugin</artifactId>
<version>3.23</version>
<optional>true</optional>
<exclusions>
<exclusion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void testGetJobConfigs() throws Exception {

//one project and one deleted project.
jenkinsRule.createFreeStyleProject("Test2").delete();
assertEquals(6, createSut().getJobConfigs("").size());
assertEquals(5, createSut().getJobConfigs("").size());
assertEquals(1, createSut().getJobConfigs("deleted").size());
}

Expand Down

0 comments on commit 5fc693d

Please sign in to comment.