Skip to content

Commit 347a756

Browse files
Bump junit from 1.38 to 1.43 (#27)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tim Jacomb <[email protected]>
1 parent c033ab5 commit 347a756

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

pom.xml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,10 @@
2727
<dependency>
2828
<groupId>io.jenkins.tools.bom</groupId>
2929
<artifactId>bom-2.235.x</artifactId>
30-
<version>13</version>
30+
<version>16</version>
3131
<scope>import</scope>
3232
<type>pom</type>
3333
</dependency>
34-
<dependency>
35-
<groupId>com.github.spotbugs</groupId>
36-
<artifactId>spotbugs-annotations</artifactId>
37-
<version>4.1.4</version>
38-
</dependency>
3934
<dependency>
4035
<groupId>com.google.errorprone</groupId>
4136
<artifactId>error_prone_annotations</artifactId>
@@ -44,12 +39,11 @@
4439
<dependency>
4540
<groupId>org.apache.commons</groupId>
4641
<artifactId>commons-lang3</artifactId>
47-
<version>3.10</version>
42+
<version>3.11</version>
4843
</dependency>
4944
<dependency>
5045
<groupId>org.jenkins-ci.plugins</groupId>
5146
<artifactId>jackson2-api</artifactId>
52-
<version>2.11.3</version>
5347
</dependency>
5448
</dependencies>
5549
</dependencyManagement>
@@ -74,7 +68,7 @@
7468
<dependency>
7569
<groupId>org.jenkins-ci.plugins</groupId>
7670
<artifactId>junit</artifactId>
77-
<version>1.38</version>
71+
<version>1.43</version>
7872
</dependency>
7973
<dependency>
8074
<groupId>com.github.spotbugs</groupId>
@@ -109,23 +103,21 @@
109103
<groupId>io.jenkins.configuration-as-code</groupId>
110104
<artifactId>test-harness</artifactId>
111105
<scope>test</scope>
112-
<exclusions>
113-
<exclusion>
114-
<groupId>com.fasterxml.jackson.core</groupId>
115-
<artifactId>jackson-databind</artifactId>
116-
</exclusion>
117-
</exclusions>
118106
</dependency>
119107
<dependency>
120108
<groupId>org.testcontainers</groupId>
121109
<artifactId>postgresql</artifactId>
122-
<version>1.14.3</version>
110+
<version>1.15.0-rc2</version>
123111
<scope>test</scope>
124112
<exclusions>
125113
<exclusion>
126114
<groupId>org.apache.commons</groupId>
127115
<artifactId>commons-compress</artifactId>
128116
</exclusion>
117+
<exclusion>
118+
<groupId>org.slf4j</groupId>
119+
<artifactId>slf4j-api</artifactId>
120+
</exclusion>
129121
</exclusions>
130122
</dependency>
131123
</dependencies>

src/test/java/io/jenkins/plugins/junit/storage/database/DatabaseTestResultStorageTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public void smokes() throws Exception {
105105
childNames.add(((Element) item).getTagName());
106106
}
107107
}
108-
assertEquals(buildXml, ImmutableSet.of("healthScaleFactor", "testData", "descriptions"), childNames);
108+
assertEquals(buildXml, ImmutableSet.of("checksName", "healthScaleFactor", "testData", "descriptions"), childNames);
109109
}
110110
{
111111
TestResultAction a = b.getAction(TestResultAction.class);

0 commit comments

Comments
 (0)