In my SBT configuration, is there a way that I can force a dependency to upgrade to the latest version of a transitive dependency? e.g. I have
"org.springframework.data" % "spring-data-neo4j" % "4.0.0.RELEASE"
as a dependency which I have declared in a plugin and use across many projects. It internally uses
"org.neo4j" % "neo4j-ogm" % "1.1.2"
as a transitive dependency.
I want to upgrade to
"org.neo4j" % "neo4j-ogm" % "1.1.4"
Is there a way to achieve this without switching to manual mode of doing all dependency management?