Merge branch 'main' into feature/add-flyway-integration-multimodule

This commit is contained in:
Maksim Skobaro 2024-08-06 01:35:23 +03:00 committed by GitHub
commit 0b98eda6ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -28,6 +28,10 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId> <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.flywaydb</groupId> <groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId> <artifactId>flyway-database-postgresql</artifactId>
@ -80,10 +84,6 @@
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -11,13 +11,13 @@ spring:
show-sql: true show-sql: true
hibernate.ddl-auto: validate hibernate.ddl-auto: validate
database: postgresql database: postgresql
properties: properties.hibernate:
hibernate:
pretty_print: true pretty_print: true
format_sql: true format_sql: true
dialect: org.hibernate.dialect.PostgreSQLDialect
flyway: flyway:
user: root user: root
password: root password: root
schemas: vkr schemas: vkr
locations: db.migration locations: db.migration
url: jdbc:postgresql://localhost:5432/db url: jdbc:postgresql://localhost:5432/db