Created
May 20, 2015 14:22
-
-
Save rtfpessoa/9d77057bd67fd2cec4c4 to your computer and use it in GitHub Desktop.
sbt Common Resolvers
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
val commonResolvers: Seq[Def.Setting[_]] = Seq( | |
resolvers ++= Seq[Resolver]( | |
DefaultMavenRepository, | |
Classpaths.typesafeReleases, | |
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/", | |
Classpaths.sbtPluginReleases, | |
"Eclipse repositories" at "https://repo.eclipse.org/service/local/repositories/egit-releases/content/", | |
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment