-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump io.jenkins.tools.bom:bom-2.479.x from 3944.v1a_e4f8b_452db_ to 4…
…228.v0a_71308d905b_ (#145)
- Loading branch information
1 parent
d43f488
commit 2320008
Showing
2 changed files
with
9 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> | ||
|
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 |
---|---|---|
|
@@ -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 | ||
assertTrue(isListBoxItemName( | ||
items, "00a8385c 2011-10-30 17:11 Łukasz Miłkowski <[email protected]> initial readme")); | ||
} | ||
} | ||
|
||
@Test | ||
|