|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | 4 | <parent> |
4 | 5 | <groupId>tech.ydb.jdbc.examples</groupId> |
|
12 | 13 | <properties> |
13 | 14 | <maven.compiler.release>17</maven.compiler.release> |
14 | 15 | <kotlin.version>1.9.22</kotlin.version> |
15 | | - <shed.lock.ydb>0.1.0</shed.lock.ydb> |
| 16 | + <shed.lock.ydb>0.3.0</shed.lock.ydb> |
16 | 17 | <spring.boot.version>3.1.2</spring.boot.version> |
| 18 | + <liquibase.ydb.dialect.version>1.1.0</liquibase.ydb.dialect.version> |
17 | 19 | </properties> |
18 | 20 | <dependencyManagement> |
19 | 21 | <dependencies> |
|
32 | 34 | <artifactId>shedlock-spring</artifactId> |
33 | 35 | <version>4.27.0</version> |
34 | 36 | </dependency> |
35 | | - <dependency> |
36 | | - <groupId>org.springframework.boot</groupId> |
37 | | - <artifactId>spring-boot-starter-web</artifactId> |
38 | | - </dependency> |
39 | 37 | <dependency> |
40 | 38 | <groupId>org.springframework.boot</groupId> |
41 | 39 | <artifactId>spring-boot-autoconfigure</artifactId> |
|
48 | 46 | <groupId>org.springframework.boot</groupId> |
49 | 47 | <artifactId>spring-boot-starter-jdbc</artifactId> |
50 | 48 | </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>tech.ydb.dialects</groupId> |
| 51 | + <artifactId>liquibase-ydb-dialect</artifactId> |
| 52 | + <version>${liquibase.ydb.dialect.version}</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.liquibase</groupId> |
| 56 | + <artifactId>liquibase-core</artifactId> |
| 57 | + </dependency> |
51 | 58 | <dependency> |
52 | 59 | <groupId>org.jetbrains.kotlin</groupId> |
53 | 60 | <artifactId>kotlin-reflect</artifactId> |
|
70 | 77 | </dependencies> |
71 | 78 | <build> |
72 | 79 | <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> |
73 | | - <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> |
74 | 80 | <plugins> |
75 | 81 | <plugin> |
76 | 82 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments