-
Notifications
You must be signed in to change notification settings - Fork 49
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
Any way to specify postgres version using sbt? #41
Comments
Hi, it should be possible to specify it with the dependencyOverrides += "io.zonky.test.postgres" % "*" % "12.4.0" |
We couldn't get the dependencyOverrides to work but instead we pointed out the exact jar file for the binary.
and then we used this these values in our project definition to get the right depenencies.
This got our integration test to run fine with postgres 12.1. |
I'm using embedded-postgres in a Scala project and building with sbt. I now need features from postgres 12 but can't seem to understand how to use a Maven BOM from sbt. Maybe its not even possible:
sbt/sbt#4531
https://stackoverflow.com/questions/42032303/how-do-i-use-a-maven-bom-bill-of-materials-to-manage-my-dependencies-in-sbt
Is there any other way I can specify the postgres version to use, maybe programmatically?
Thanks for this project!
The text was updated successfully, but these errors were encountered: