Skip to content

Commit

Permalink
Merge pull request #47 from flyway/fix-cdbs
Browse files Browse the repository at this point in the history
Fix distribution errors
  • Loading branch information
Barry-RG authored Jun 13, 2024
2 parents f1df122 + 736ad81 commit 810719f
Show file tree
Hide file tree
Showing 24 changed files with 26 additions and 13 deletions.
15 changes: 14 additions & 1 deletion flyway-community-db-support-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support-archetype</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
<packaging>maven-archetype</packaging>

<name>Archetype - flyway-community-db-support-archetype</name>
Expand All @@ -17,6 +17,19 @@
<maven.compiler.release>17</maven.compiler.release>
</properties>

<distributionManagement>
<snapshotRepository>
<id>${snapshotRepository.id}</id>
<name>${snapshotRepository.name}</name>
<url>${snapshotRepository.url}</url>
</snapshotRepository>
<repository>
<id>${releaseRepository.id}</id>
<name>${releaseRepository.name}</name>
<url>${releaseRepository.url}</url>
</repository>
</distributionManagement>

<build>
<extensions>
<extension>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-clickhouse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-clickhouse</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-databricks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-databricks</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-db2zOS</artifactId>
<artifactId>flyway-database-db2zos</artifactId>
<name>${project.artifactId}</name>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-ignite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-ignite</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-oceanbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-oceanbase</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-tidb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-tidb</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-yugabytedb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.14.0</version>
<version>10.14.1</version>
</parent>

<artifactId>flyway-database-yugabytedb</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>10.12.0</version>
<version>10.15.0</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>flyway-community-db-support</artifactId>
<packaging>pom</packaging>
<version>10.14.0</version>
<version>10.14.1</version>
<name>${project.artifactId}</name>

<modules>
Expand All @@ -38,12 +38,12 @@
<module>flyway-database-clickhouse</module>
<module>flyway-database-oceanbase</module>
<module>flyway-database-databricks</module>
<module>flyway-database-db2zos</module>
<module>flyway-community-db-support-archetype</module>
<module>flyway-database-db2zOS</module>
</modules>

<properties>
<version.flyway>10.14.0</version.flyway>
<version.flyway>10.15.0</version.flyway>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 810719f

Please sign in to comment.