Skip to content

Commit

Permalink
Merge pull request #78 from jonesbusy/feature/10
Browse files Browse the repository at this point in the history
Flyway major upgrade to version 10 and require Java 17 and 2.463
  • Loading branch information
jonesbusy authored Sep 18, 2024
2 parents 0e1c36d + 54e69aa commit e2f66ff
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,21 @@
<url>https://github.com/${gitHubRepo}</url>
</scm>
<properties>
<revision>9.22.3</revision>
<revision>10.18.0</revision>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.baseline>2.440</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
<jenkins.baseline>2.462</jenkins.baseline>
<!-- TODO Replace with the standard jenkins.baseline references after LTS requires Java 17 -->
<!-- <jenkins.version>${jenkins.baseline}.1</jenkins.version> -->
<jenkins.version>2.463</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<spotless.check.skip>false</spotless.check.skip>

<!-- Test dependencies version -->
<testcontainer.version>1.20.1</testcontainer.version>

<!-- TODO JENKINS-73339 until in parent POM -->
<maven.compiler.release>17</maven.compiler.release>

</properties>

<dependencyManagement>
Expand All @@ -59,6 +64,11 @@
<version>${revision}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
Expand Down Expand Up @@ -88,12 +98,21 @@
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-toml</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
</dependency>

<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
Expand All @@ -102,6 +121,10 @@
<groupId>org.flywaydb</groupId>
<artifactId>flyway-sqlserver</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jackson2-api</artifactId>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand Down

0 comments on commit e2f66ff

Please sign in to comment.