An sbt plugin to resolve dependencies using Aether (Maven's dependency resolver) together with Apache Ivy.
It solves the problems:
- sbt does not resolve the proper snapshot-version with timestamp dependencies deployed by sbt
- the host repository's "Maven Snapshot Version Behaviour" is "Unique" (Nonunique will overwrite jar/pom at each time and update all maven-metadata.xml automatically updated once a jar was been deployed)
related question:
In plugins.sbt
:
addSbtPlugin("org.scala-sbt" % "sbt-maven-resolver" % "0.1.0")
- In 2015, Josh Suereth implemented sbt-maven-resolver as part of sbt 0.13.8 in sbt/sbt#1793.
Licensed under Apache v2 license