|
8 | 8 | <relativePath /> |
9 | 9 | </parent> |
10 | 10 | <groupId>io.jenkins.plugins</groupId> |
11 | | - <artifactId>junit-postgresql</artifactId> |
| 11 | + <artifactId>junit-sql-storage</artifactId> |
12 | 12 | <version>${revision}${changelist}</version> |
13 | 13 | <packaging>hpi</packaging> |
14 | 14 | <properties> |
15 | 15 | <revision>1.0</revision> |
16 | 16 | <changelist>-SNAPSHOT</changelist> |
17 | 17 | <jenkins.version>2.235.1</jenkins.version> |
18 | 18 | <java.level>8</java.level> |
| 19 | + <useBeta>true</useBeta> |
19 | 20 | </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> |
22 | 23 | <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
23 | 24 |
|
24 | 25 | <dependencyManagement> |
|
30 | 31 | <scope>import</scope> |
31 | 32 | <type>pom</type> |
32 | 33 | </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> |
33 | 49 | </dependencies> |
34 | 50 | </dependencyManagement> |
35 | 51 |
|
36 | 52 | <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 55 | + <artifactId>database</artifactId> |
| 56 | + <version>1.7</version> |
| 57 | + </dependency> |
37 | 58 | <dependency> |
38 | 59 | <groupId>org.jenkins-ci.plugins</groupId> |
39 | 60 | <artifactId>database-postgresql</artifactId> |
40 | | - <version>1.2-SNAPSHOT</version> |
| 61 | + <version>1.2</version> |
| 62 | + <scope>test</scope> |
41 | 63 | </dependency> |
42 | 64 | <dependency> |
43 | 65 | <groupId>org.jenkins-ci.plugins</groupId> |
44 | 66 | <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> |
46 | 72 | </dependency> |
47 | 73 | </dependencies> |
48 | 74 |
|
|
0 commit comments