Skip to content

Commit

Permalink
Use HTTPS for dependency repository resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
lresende committed Aug 12, 2020
1 parent 051e0de commit a70d2d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ javaOptions in ThisBuild ++= Seq(
testOptions in (ThisBuild, Test) += Tests.Argument("-oDF")
// Build-wide dependencies
resolvers in ThisBuild ++= Seq(
"Apache Snapshots" at "http://repository.apache.org/snapshots/",
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
"Apache Snapshots" at "https://repository.apache.org/snapshots/",
"Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/",
"Jitpack" at "https://jitpack.io",
"bintray-sbt-plugins" at "http://dl.bintray.com/sbt/sbt-plugin-releases"
"bintray-sbt-plugins" at "https://dl.bintray.com/sbt/sbt-plugin-releases"
)
updateOptions in ThisBuild := updateOptions.value.withCachedResolution(true)
libraryDependencies in ThisBuild ++= Seq(
Expand Down

0 comments on commit a70d2d9

Please sign in to comment.