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 5cf8853 commit 82bb3da
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions liquibase-dialect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ To use this YDB Liquibase Dialect, you'll need:
For Maven, add the following dependency to your pom.xml:

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

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

```groovy
dependencies {
implementation "org.liquibase:liquibase-core:$liquibaseCoreVersion" // Set actual version
implementation "tech.ydb.dialects:liquibase-ydb-dialect:$liquibaseYdbDialecVersion" // Set actual version
implementation "tech.ydb.jdbc:ydb-jdbc-driver:${ydbJdbcVersion}" // Set actual version
// Set actual versions
implementation "org.liquibase:liquibase-core:$liquibaseCoreVersion"
implementation "tech.ydb.dialects:liquibase-ydb-dialect:$liquibaseYdbDialecVersion"
implementation "tech.ydb.jdbc:ydb-jdbc-driver:$ydbJdbcVersion"
}
```

Expand Down

0 comments on commit 82bb3da

Please sign in to comment.