1

When I try to run my server, I get this Error:

sbt.ResolveException: unresolved dependency: postgresql#postgresql;42.1.0: not found

This happens with every version of postgresql I've yet tried, so I really don't see why. I've added the dependency in my build.sbt file like so:

libraryDependencies += "postgresql" % "postgresql" % "42.1.0"

1 Answer 1

2

Add this: libraryDependencies += "org.postgresql" % "postgresql" % "42.1.0" into build.sbt file

Sign up to request clarification or add additional context in comments.

1 Comment

UPDATE: the "org.postgresql" actually was the mistake, I only put "postgresql". Thank you so much!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.