Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Use https instead of http in urls #776

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

original link broken

resolvers += "jgit-repo" at "https://download.eclipse.org/jgit/maven"

addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
Expand Down
4 changes: 2 additions & 2 deletions sbt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ make_url () {
version="$1"

case "$version" in
0.7.*) echo "http://simple-build-tool.googlecode.com/files/sbt-launch-0.7.7.jar" ;;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

original link broken

0.7.*) echo "https://simple-build-tool.googlecode.com/files/sbt-launch-0.7.7.jar" ;;
0.10.* ) echo "$sbt_launch_repo/org.scala-tools.sbt/sbt-launch/$version/sbt-launch.jar" ;;
0.11.[12]) echo "$sbt_launch_repo/org.scala-tools.sbt/sbt-launch/$version/sbt-launch.jar" ;;
*) echo "$sbt_launch_repo/org.scala-sbt/sbt-launch/$version/sbt-launch.jar" ;;
Expand Down Expand Up @@ -115,7 +115,7 @@ declare -r script_name="${script_path##*/}"
declare java_cmd="java"
declare sbt_opts_file="$(init_default_option_file SBT_OPTS .sbtopts)"
declare jvm_opts_file="$(init_default_option_file JVM_OPTS .jvmopts)"
declare sbt_launch_repo="http://repo.typesafe.com/typesafe/ivy-releases"
declare sbt_launch_repo="https://repo.typesafe.com/typesafe/ivy-releases"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

link resolved


# pull -J and -D options to give to java.
declare -a residual_args
Expand Down