Skip to content

Commit

Permalink
Add some database plugins to the managed set (#2655)
Browse files Browse the repository at this point in the history
* Add some database plugins to the managed set

* Use h2 plugin release 1.4.89.v22b_9ca_318b_0a_

---------

Co-authored-by: Mark Waite <[email protected]>
  • Loading branch information
basil and MarkEWaite authored Nov 18, 2023
1 parent 9636f62 commit 830625d
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
31 changes: 30 additions & 1 deletion bom-weekly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,11 @@
<artifactId>gitlab-branch-source</artifactId>
<version>684.vea_fa_7c1e2fe3</version>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>h2-api</artifactId>
<version>11.1.4.199-12.v9f4244395f7a_</version>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>ionicons-api</artifactId>
Expand Down Expand Up @@ -330,6 +335,11 @@
<version>${plugin-util-api.version}</version>
<classifier>tests</classifier>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>postgresql-api</artifactId>
<version>42.6.0-31.vb_7e76dc13969</version>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>prism-api</artifactId>
Expand Down Expand Up @@ -507,6 +517,21 @@
<artifactId>dashboard-view</artifactId>
<version>2.495.v07e81500c3f2</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>database</artifactId>
<version>191.vd5981b_97a_5fa_</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>database-h2</artifactId>
<version>1.4.89.v22b_9ca_318b_0a_</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>database-postgresql</artifactId>
<version>100.v2418e0a_c6909</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>display-url-api</artifactId>
Expand Down Expand Up @@ -765,7 +790,11 @@
<artifactId>pipeline-maven-api</artifactId>
<version>${pipeline-maven-plugin.version}</version>
</dependency>
<!-- TODO add pipeline-maven-database -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pipeline-maven-database</artifactId>
<version>${pipeline-maven-plugin.version}</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pipeline-milestone-step</artifactId>
Expand Down
25 changes: 25 additions & 0 deletions sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@
<artifactId>gitlab-branch-source</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>h2-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>jakarta-activation-api</artifactId>
Expand Down Expand Up @@ -282,6 +287,11 @@
<artifactId>plugin-util-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>postgresql-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>prism-api</artifactId>
Expand Down Expand Up @@ -419,6 +429,16 @@
<artifactId>dashboard-view</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>database-h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>database-postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>docker-java-api</artifactId>
Expand Down Expand Up @@ -622,6 +642,11 @@
<artifactId>pipeline-maven</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pipeline-maven-database</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pipeline-milestone-step</artifactId>
Expand Down

0 comments on commit 830625d

Please sign in to comment.