Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov authored Apr 15, 2024
1 parent 04389d3 commit 8dc070f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions flyway-dialect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ To use this YDB Flyway Dialect, you'll need:
For Maven, add the following dependency to your pom.xml:

```xml
<!-- Set an actual versions -->

<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
Expand All @@ -45,7 +47,6 @@ For Maven, add the following dependency to your pom.xml:
<dependency>
<groupId>tech.ydb.dialects</groupId>
<artifactId>flyway-ydb-dialect</artifactId>
<!-- Set an actual version -->
<version>${flyway.ydb.dialect.version}</version>
</dependency>
```
Expand All @@ -54,9 +55,10 @@ For Gradle, add the following to your build.gradle (or build.gradle.kts):

```groovy
dependencies {
implementation "org.flywaydb:flyway-core:$flywayCoreVersion" // Set actual version
implementation "tech.ydb.dialects:flyway-ydb-dialect:$flywayYdbDialecVersion" // Set actual version
implementation "tech.ydb.jdbc:ydb-jdbc-driver:${ydbJdbcVersion}" // Set actual version
// Set actual versions
implementation "org.flywaydb:flyway-core:$flywayCoreVersion"
implementation "tech.ydb.dialects:flyway-ydb-dialect:$flywayYdbDialecVersion"
implementation "tech.ydb.jdbc:ydb-jdbc-driver:$ydbJdbcVersion"
}
```

Expand Down Expand Up @@ -96,4 +98,4 @@ See [connect to YDB](../README.md/#connect-to-ydb).

## Support and Contact

For support, you can open issues in the repository issue tracker with tag `flyway`.
For support, you can open issues in the repository issue tracker with tag `flyway`.

0 comments on commit 8dc070f

Please sign in to comment.