liquibase example updated

This commit is contained in:
stvort
2020-05-27 19:25:43 +04:00
parent 2105957356
commit 2b56511cd0
2 changed files with 7 additions and 3 deletions
+3
View File
@@ -4,3 +4,6 @@
* *структура файлов changelog-ов в разных форматах*
* *создание связанных таблиц средствами liquibase*
* *наполнение таблиц данными средствами liquibase*
Ссылка на документацию:
* https://docs.liquibase.com/concepts/basic/home.html
+4 -3
View File
@@ -27,24 +27,25 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
<version>${h2.version}</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>${liquibase.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.26</version>
<version>${snakeyaml.version}</version>
</dependency>
</dependencies>