-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparing CHANGELOG.md and pom.xml / fixed YdbJdbcTemplate imports
- Loading branch information
1 parent
be065dd
commit c0a4438
Showing
4 changed files
with
90 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## 1.0.0-RC0 ## | ||
|
||
* Implementation distributed lock | ||
* Supported main commands how `migration`, `info`, `validate`, `baseline`, `clean`, `repair` | ||
* Mock YDB schema which it doesn't support (<= 24.1) | ||
* Extension JdbcTemplate via YdbJdbcTemplate | ||
* Implementation of all main classes from packages `org.flywaydb.core.internal.database.base` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,35 @@ | |
|
||
<groupId>tech.ydb</groupId> | ||
<artifactId>flyway-dialect</artifactId> | ||
<version>0.9.1-SNAPSHOT</version> | ||
<version>0.9.7</version> | ||
|
||
<name>Flyway YDB Dialect</name> | ||
<description>Support Flyway YDB Dialect</description> | ||
<url>https://github.com/ydb-platform/ydb-java-dialects</url> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<developers> | ||
<developer> | ||
<name>Kirill Kurdyukov</name> | ||
<email>[email protected]</email> | ||
<organization>YDB</organization> | ||
<organizationUrl>https://ydb.tech/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/ydb-platform/ydb-java-dialects</url> | ||
<connection>scm:git:https://github.com/ydb-platform/ydb-java-dialects.git</connection> | ||
<developerConnection>scm:git:https://github.com/ydb-platform/ydb-java-dialects.git</developerConnection> | ||
</scm> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
</licenses> | ||
|
||
<properties> | ||
<maven.compiler.source>17</maven.compiler.source> | ||
|
@@ -41,12 +69,6 @@ | |
<groupId>tech.ydb.test</groupId> | ||
<artifactId>ydb-junit5-support</artifactId> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
<version>2.2.0</version> | ||
</dependency> | ||
<dependency> | ||
|
@@ -64,7 +86,7 @@ | |
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.5.0</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<source>17</source> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
|
@@ -100,4 +122,49 @@ | |
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>ossrh-s01</id> | ||
<activation> | ||
<activeByDefault>false</activeByDefault> | ||
</activation> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.13</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh-s01</serverId> | ||
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>false</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters