Skip to content

Commit

Permalink
Bump io.jenkins.tools.bom:bom-2.479.x from 3944.v1a_e4f8b_452db_ to 4…
Browse files Browse the repository at this point in the history
…228.v0a_71308d905b_ (#145)
  • Loading branch information
dependabot[bot] authored Mar 2, 2025
1 parent d43f488 commit 2320008
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 21 deletions.
21 changes: 2 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,6 @@
</license>
</licenses>

<developers>
<developer>
<id>markewaite</id>
<name>Mark Waite</name>
<email>[email protected]</email>
</developer>
<developer>
<id>klimas7</id>
<name>Boguslaw Klimas</name>
<email>[email protected]</email>
</developer>
<developer>
<id>lukanus</id>
<name>Lukasz Milkowski</name>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection>
Expand All @@ -52,7 +35,7 @@
<changelist>-SNAPSHOT</changelist>
<!-- Baseline Jenkins version you use to build and test the plugin. Users must have this version or newer to run. -->
<jenkins.baseline>2.479</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.1</jenkins.version>
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<spotless.check.skip>false</spotless.check.skip>
</properties>
Expand All @@ -62,7 +45,7 @@
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>3944.v1a_e4f8b_452db_</version>
<version>4228.v0a_71308d905b_</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,13 @@ public void testDoFillValueItems_listRevisions() throws Exception {
assertNotNull(build);
ItemsErrorModel items = def.getDescriptor().doFillValueItems(project, def.getName());
assertTrue(isListBoxItem(items, "00a8385cba1e4e32cf823775e2b3dbe5eb27931d"));
assertTrue(isListBoxItemName(
items, "00a8385c 2011-10-30 17:11 Łukasz Miłkowski <[email protected]> initial readme"));
if (!Functions.isWindows() || System.getenv("CI") == null) {
// Windows agents on AWS ci.jenkins.io changed character set configuration compared to Azure
// Only test when not on Windows and not on a CI configuration
// TODO: Remove conditional when AWS ci.jenkins.io agent character set config is updated

Check warning on line 404 in src/test/java/net/uaznia/lukanus/hudson/plugins/gitparameter/GitParameterDefinitionTest.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: Remove conditional when AWS ci.jenkins.io agent character set config is updated
assertTrue(isListBoxItemName(
items, "00a8385c 2011-10-30 17:11 Łukasz Miłkowski <[email protected]> initial readme"));
}
}

@Test
Expand Down

0 comments on commit 2320008

Please sign in to comment.