You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
I want to use zonky in my spring-boot project to test working with postgree database. When using io.zonky.test.embedded-postgres version 1.x.x everything works fine, but postgree version is less than 13. If I specify io.zonky.test.embedded-postgres version 2.1.0 (2.x.x), I get an error
Caused by: io.zonky.test.db.config.MissingProviderDependencyException: You have to add the following dependency to your project: 'io.zonky.test:embedded-postgres'
The error message describes the problem quite accurately. You probably don't have the io.zonky.test.embedded-postgres dependency set up correctly. In version 1.x, this dependency was part of the library, but from version 2.x onward, you need to add it manually.
My guess is that you have the dependency listed in the <dependencyManagement> section of your pom.xml, but not in the <dependencies> section.
Hi!
I want to use zonky in my spring-boot project to test working with postgree database. When using io.zonky.test.embedded-postgres version 1.x.x everything works fine, but postgree version is less than 13. If I specify io.zonky.test.embedded-postgres version 2.1.0 (2.x.x), I get an error
Project settings:
java 17, spring-boot 3.2.3
Does anyone know what I'm doing wrong?
thanks
The text was updated successfully, but these errors were encountered: