Last active
August 29, 2015 14:12
-
-
Save yatskevich/b3bdbeac44af9625cff6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is correct way to define a resolver for Maven style repository. | |
resolvers += "version99" at "http://version99.qos.ch/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// WARNING: This declaration is not an equivalent of `"version99" at "http://version99.qos.ch/"`, so it won't work as you might expect. | |
resolvers += Resolver.url("version99", url("http://version99.qos.ch/"))(Resolver.mavenStylePatterns) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment