-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flyway and helper dependecies #21
Conversation
build.gradle
Outdated
@@ -40,3 +50,9 @@ dependencies { | |||
test { | |||
useJUnitPlatform() | |||
} | |||
|
|||
flyway { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a good solution. We should avoid putting credentials here
runtimeOnly 'org.postgresql:postgresql' | ||
|
||
testImplementation "com.h2database:h2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to mention - in our case testing with h2 is impossible: h2 does not support Enumerations from Postgres that we are using.
Kudos, SonarCloud Quality Gate passed! |
add flyway and mapper dependencies