Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Fix Multiple resolvers warning #1194

Merged
merged 2 commits into from
Sep 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/main/scala/sbtorgpolicies/settings/AllSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ trait AllSettings
* Adds Sonatype release repository and "withCachedResolution" to the update options
*/
lazy val sharedCommonSettings = Seq(
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.typesafeIvyRepo("releases"),
Resolver.bintrayRepo("beyondthelines", "maven")
),
resolvers ++= Seq(Resolver.sonatypeRepo("releases")),
updateOptions := updateOptions.value.withCachedResolution(true)
)

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.12.0-SNAPSHOT"
version in ThisBuild := "0.12.0-M3"