Skip to content

Commit 2373b26

Browse files
committed
Update to latest
1 parent c83e455 commit 2373b26

File tree

5 files changed

+168
-99
lines changed

5 files changed

+168
-99
lines changed

docker-compose.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: '3.1'
2+
3+
services:
4+
5+
db:
6+
image: postgres
7+
restart: always
8+
environment:
9+
POSTGRES_PASSWORD: postgres
10+
ports:
11+
- 5432:5432

pom.xml

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@
88
<relativePath />
99
</parent>
1010
<groupId>io.jenkins.plugins</groupId>
11-
<artifactId>junit-postgresql</artifactId>
11+
<artifactId>junit-sql-storage</artifactId>
1212
<version>${revision}${changelist}</version>
1313
<packaging>hpi</packaging>
1414
<properties>
1515
<revision>1.0</revision>
1616
<changelist>-SNAPSHOT</changelist>
1717
<jenkins.version>2.235.1</jenkins.version>
1818
<java.level>8</java.level>
19+
<useBeta>true</useBeta>
1920
</properties>
20-
<name>Junit PostgreSQL Plugin</name>
21-
<description>Provides a pluggable storage extension for the junit plugin with PostgreSQL</description>
21+
<name>Junit SQL Storage Plugin</name>
22+
<description>Provides a pluggable storage extension for the junit plugin with a SQL database</description>
2223
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
2324

2425
<dependencyManagement>
@@ -30,19 +31,44 @@
3031
<scope>import</scope>
3132
<type>pom</type>
3233
</dependency>
34+
<dependency>
35+
<groupId>com.github.spotbugs</groupId>
36+
<artifactId>spotbugs-annotations</artifactId>
37+
<version>4.1.2</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.google.errorprone</groupId>
41+
<artifactId>error_prone_annotations</artifactId>
42+
<version>2.4.0</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>com.fasterxml.jackson.core</groupId>
46+
<artifactId>jackson-databind</artifactId>
47+
<version>2.11.1</version>
48+
</dependency>
3349
</dependencies>
3450
</dependencyManagement>
3551

3652
<dependencies>
53+
<dependency>
54+
<groupId>org.jenkins-ci.plugins</groupId>
55+
<artifactId>database</artifactId>
56+
<version>1.7</version>
57+
</dependency>
3758
<dependency>
3859
<groupId>org.jenkins-ci.plugins</groupId>
3960
<artifactId>database-postgresql</artifactId>
40-
<version>1.2-SNAPSHOT</version>
61+
<version>1.2</version>
62+
<scope>test</scope>
4163
</dependency>
4264
<dependency>
4365
<groupId>org.jenkins-ci.plugins</groupId>
4466
<artifactId>junit</artifactId>
45-
<version>1.32-SNAPSHOT</version>
67+
<version>1.35-SNAPSHOT</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.github.spotbugs</groupId>
71+
<artifactId>spotbugs-annotations</artifactId>
4672
</dependency>
4773
</dependencies>
4874

0 commit comments

Comments
 (0)