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
{{ message }}
This repository has been archived by the owner on May 12, 2020. It is now read-only.
I am on Ubuntu and I have following maven coordinates in my Spring Boot Project:
ru.yandex.qatools.embed
postgresql-embedded
2.10
and follwing Postgres configuration I am useing:
System.out.println("-----------------------------Hello World-------------------------------------------");
DriverManagerDataSource ds = new DriverManagerDataSource();
ds.setDriverClassName("org.postgresql.Driver");
ds.setUrl(String.format("jdbc:postgresql://%s:%s/%s", config.net().host(), config.net().port(), config.storage().dbName()));
ds.setUsername(config.credentials().username());
ds.setPassword(config.credentials().password());
and it fails to download postgres and hence desn't work.
The text was updated successfully, but these errors were encountered: