diff --git a/.scalafmt.conf b/.scalafmt.conf
index 47e13ff43..84b1633e8 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -4,7 +4,7 @@ maxColumn = 100
project.git = true
project.excludeFilters = [ "\\Wsbt-test\\W", "\\Winput_sources\\W", "\\Wcontraband-scala\\W" ]
-# http://docs.scala-lang.org/style/scaladoc.html recommends the JavaDoc style.
+# https://docs.scala-lang.org/style/scaladoc.html recommends the JavaDoc style.
# scala/scala is written that way too https://github.com/scala/scala/blob/v2.12.2/src/library/scala/Predef.scala
docstrings = JavaDoc
@@ -12,7 +12,7 @@ docstrings = JavaDoc
spaces.inImportCurlyBraces = true
# This is more idiomatic Scala.
-# http://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments
+# https://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments
align.openParenCallSite = false
align.openParenDefnSite = false
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1f14b8aa6..7a90de47c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,5 +1,5 @@
- [StackOverflow]: http://stackoverflow.com/tags/sbt
- [Setup]: http://www.scala-sbt.org/release/docs/Getting-Started/Setup
+ [StackOverflow]: https://stackoverflow.com/tags/sbt
+ [Setup]: https://www.scala-sbt.org/release/docs/Getting-Started/Setup
[Issues]: https://github.com/sbt/sbt/issues
[sbt-contrib]: https://gitter.im/sbt/sbt-contrib
[327]: https://github.com/sbt/sbt/issues/327
diff --git a/DEVELOPING.md b/DEVELOPING.md
index f3a29fdc8..58a538a56 100644
--- a/DEVELOPING.md
+++ b/DEVELOPING.md
@@ -132,7 +132,7 @@ suite with `sbt testOnly`
Scripted integration tests reside in `sbt/src/sbt-test` and are
written using the same testing infrastructure sbt plugin authors can
use to test their own plugins with sbt. You can read more about this
-style of tests [here](http://www.scala-sbt.org/1.0/docs/Testing-sbt-plugins).
+style of tests [here](https://www.scala-sbt.org/1.0/docs/Testing-sbt-plugins).
You can run the integration tests with the `sbt scripted` sbt
command. To run a single test, such as the test in
diff --git a/README.md b/README.md
index de17fcd87..2f9ef8a6e 100644
--- a/README.md
+++ b/README.md
@@ -4,10 +4,10 @@
[sbt/sbt-zero-seven]: https://github.com/sbt/sbt-zero-seven
[CONTRIBUTING]: CONTRIBUTING.md
- [Setup]: http://www.scala-sbt.org/release/docs/Getting-Started/Setup
- [FAQ]: http://www.scala-sbt.org/release/docs/Faq.html
+ [Setup]: https://www.scala-sbt.org/release/docs/Getting-Started/Setup
+ [FAQ]: https://www.scala-sbt.org/release/docs/Faq.html
[sbt-dev]: https://groups.google.com/d/forum/sbt-dev
- [searching]: http://stackoverflow.com/tags/sbt
+ [searching]: https://stackoverflow.com/tags/sbt
[asking]: https://stackoverflow.com/questions/ask?tags=sbt
[LICENSE]: LICENSE
[sbt/io]: https://github.com/sbt/io
@@ -20,7 +20,7 @@ sbt
sbt is a build tool for Scala, Java, and more.
-For general documentation, see http://www.scala-sbt.org/.
+For general documentation, see https://www.scala-sbt.org/.
sbt 1.x
---------
diff --git a/internal/util-collection/src/main/scala/sbt/internal/util/HList.scala b/internal/util-collection/src/main/scala/sbt/internal/util/HList.scala
index 95e60cb05..f0922a079 100644
--- a/internal/util-collection/src/main/scala/sbt/internal/util/HList.scala
+++ b/internal/util-collection/src/main/scala/sbt/internal/util/HList.scala
@@ -11,7 +11,7 @@ import Types._
/**
* A minimal heterogeneous list type. For background, see
- * http://apocalisp.wordpress.com/2010/07/06/type-level-programming-in-scala-part-6a-heterogeneous-listĀ basics/
+ * https://apocalisp.wordpress.com/2010/07/06/type-level-programming-in-scala-part-6a-heterogeneous-listĀ basics/
*/
sealed trait HList {
type Wrap[M[_]] <: HList
diff --git a/main-settings/src/main/scala/sbt/Structure.scala b/main-settings/src/main/scala/sbt/Structure.scala
index 6ec525230..83c57ec16 100644
--- a/main-settings/src/main/scala/sbt/Structure.scala
+++ b/main-settings/src/main/scala/sbt/Structure.scala
@@ -627,7 +627,7 @@ object Scoped {
/** The sbt 0.10 style DSL was deprecated in 0.13.13, favouring the use of the '.value' macro.
*
- * See http://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html#Migrating+from+sbt+0.12+style for how to migrate.
+ * See https://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html#Migrating+from+sbt+0.12+style for how to migrate.
*/
trait TupleSyntax {
import Scoped._
diff --git a/main-settings/src/main/scala/sbt/std/InputWrapper.scala b/main-settings/src/main/scala/sbt/std/InputWrapper.scala
index 79898b97f..64fe5508d 100644
--- a/main-settings/src/main/scala/sbt/std/InputWrapper.scala
+++ b/main-settings/src/main/scala/sbt/std/InputWrapper.scala
@@ -140,7 +140,7 @@ object InputWrapper {
c.abort(
pos,
"""`value` is removed from input tasks. Use `evaluated` or `inputTaskValue`.
- |See http://www.scala-sbt.org/1.0/docs/Input-Tasks.html for more details.""".stripMargin
+ |See https://www.scala-sbt.org/1.0/docs/Input-Tasks.html for more details.""".stripMargin
)
}
InputWrapper.wrapInit[T](c)(ts, pos)
diff --git a/main-settings/src/main/scala/sbt/std/TaskMacro.scala b/main-settings/src/main/scala/sbt/std/TaskMacro.scala
index c6c90fdf2..6ae793c47 100644
--- a/main-settings/src/main/scala/sbt/std/TaskMacro.scala
+++ b/main-settings/src/main/scala/sbt/std/TaskMacro.scala
@@ -93,12 +93,12 @@ object TaskMacro {
final val InputTaskCreateDynName = "createDyn"
final val InputTaskCreateFreeName = "createFree"
final val append1Migration =
- "`<+=` operator is removed. Try `lhs += { x.value }`\n or see http://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html."
+ "`<+=` operator is removed. Try `lhs += { x.value }`\n or see https://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html."
final val appendNMigration =
- "`<++=` operator is removed. Try `lhs ++= { x.value }`\n or see http://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html."
+ "`<++=` operator is removed. Try `lhs ++= { x.value }`\n or see https://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html."
final val assignMigration =
"""`<<=` operator is removed. Use `key := { x.value }` or `key ~= (old => { newValue })`.
- |See http://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html""".stripMargin
+ |See https://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html""".stripMargin
import LinterDSL.{ Empty => EmptyLinter }
diff --git a/notes/0.13.11.markdown b/notes/0.13.11.markdown
index eef7d38bc..64fe831df 100644
--- a/notes/0.13.11.markdown
+++ b/notes/0.13.11.markdown
@@ -1,14 +1,14 @@
[@eed3si9n]: https://github.com/eed3si9n
[@jsuereth]: https://github.com/jsuereth
- [@dwijnand]: http://github.com/dwijnand
- [@Duhemm]: http://github.com/Duhemm
+ [@dwijnand]: https://github.com/dwijnand
+ [@Duhemm]: https://github.com/Duhemm
[@gkossakowski]: https://github.com/gkossakowski
[@adriaanm]: https://github.com/adriaanm
[@jrudolph]: https://github.com/jrudolph
[@stuhood]: https://github.com/stuhood
[@pdalpra]: https://github.com/pdalpra
- [@fkorotkov]: http://github.com/fkorotkov
+ [@fkorotkov]: https://github.com/fkorotkov
[@hgiddens]: https://github.com/hgiddens
[@DavidPerezIngeniero]: https://github.com/DavidPerezIngeniero
[@romanowski]: https://github.com/romanowski
diff --git a/notes/0.13.12.markdown b/notes/0.13.12.markdown
index 9a8d9162e..777e969c4 100644
--- a/notes/0.13.12.markdown
+++ b/notes/0.13.12.markdown
@@ -60,14 +60,14 @@
[@eed3si9n]: https://github.com/eed3si9n
[@jsuereth]: https://github.com/jsuereth
- [@dwijnand]: http://github.com/dwijnand
- [@Duhemm]: http://github.com/Duhemm
+ [@dwijnand]: https://github.com/dwijnand
+ [@Duhemm]: https://github.com/Duhemm
[@gkossakowski]: https://github.com/gkossakowski
[@adriaanm]: https://github.com/adriaanm
[@jrudolph]: https://github.com/jrudolph
[@stuhood]: https://github.com/stuhood
[@pdalpra]: https://github.com/pdalpra
- [@fkorotkov]: http://github.com/fkorotkov
+ [@fkorotkov]: https://github.com/fkorotkov
[@hgiddens]: https://github.com/hgiddens
[@DavidPerezIngeniero]: https://github.com/DavidPerezIngeniero
[@romanowski]: https://github.com/romanowski
diff --git a/notes/0.13.13.markdown b/notes/0.13.13.markdown
index 75b5c31c5..a49ddb60d 100644
--- a/notes/0.13.13.markdown
+++ b/notes/0.13.13.markdown
@@ -121,7 +121,7 @@ This becomes:
run := docsRunSetting.evaluated
-See [Migrating from sbt 0.12.x](http://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html) for more details.
+See [Migrating from sbt 0.12.x](https://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html) for more details.
[#2716][2716]/[#2763][2763]/[#2764][2764] by [@eed3si9n][@eed3si9n] and [@dwijnand][@dwijnand]
diff --git a/notes/0.13.14.markdown b/notes/0.13.14.markdown
index 10210419c..d0249d9a8 100644
--- a/notes/0.13.14.markdown
+++ b/notes/0.13.14.markdown
@@ -58,7 +58,7 @@ since the resolution happens off of a local-preloaded repository.
No changes should be necessary to your project definition and all plugins published for sbt 0.13.{x|x<14} should still work.
-See [Migrating from sbt 0.12.x](http://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html) for details on the old operator deprecation.
+See [Migrating from sbt 0.12.x](https://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html) for details on the old operator deprecation.
Special thanks to the contributors for making this release a success. According to `git shortlog -sn --no-merges v0.13.13..0.13`, compared to 0.13.13, there were 42 (non-merge) commits, by ten contributors: Dale Wijnand, Eugene Yokota, Guillaume Martres, Jason Zaugg, Petro Verkhogliad, Eric Richardson, Claudio Bley, Haochi Chen, Paul Draper, Ashley Mercer. Thank you!
diff --git a/notes/0.13.7.markdown b/notes/0.13.7.markdown
index 7a1cdc0a3..2cddb7576 100644
--- a/notes/0.13.7.markdown
+++ b/notes/0.13.7.markdown
@@ -1,5 +1,5 @@
- [Cached-Resolution]: http://www.scala-sbt.org/0.13/docs/Cached-Resolution.html
+ [Cached-Resolution]: https://www.scala-sbt.org/0.13/docs/Cached-Resolution.html
[@cunei]: https://github.com/cunei
[@eed3si9n]: https://github.com/eed3si9n
[@gkossakowski]: https://github.com/gkossakowski
diff --git a/notes/0.13.8.markdown b/notes/0.13.8.markdown
index 5b8f36a15..3f77b4f09 100644
--- a/notes/0.13.8.markdown
+++ b/notes/0.13.8.markdown
@@ -6,14 +6,14 @@
[@aerskine]: https://github.com/aerskine
[@ajozwik]: https://github.com/ajozwik
[@dwickern]: https://github.com/dwickern
- [@dwijnand]: http://github.com/dwijnand
+ [@dwijnand]: https://github.com/dwijnand
[@Duhemm]: https://github.com/Duhemm
[@kretes]: https://github.com/kretes
[@indrajitr]: https://github.com/indrajitr
[@j-keck]: https://github.com/j-keck
[@xuwei-k]: https://github.com/xuwei-k
[SI-9027]: https://issues.scala-lang.org/browse/SI-9027
- [Custom-Settings0]: http://www.scala-sbt.org/0.13/tutorial/Custom-Settings.html
+ [Custom-Settings0]: https://www.scala-sbt.org/0.13/tutorial/Custom-Settings.html
[321]: https://github.com/sbt/sbt/issues/321
[647]: https://github.com/sbt/sbt/issues/647
[679]: https://github.com/sbt/sbt/issues/679
diff --git a/notes/0.13.9.markdown b/notes/0.13.9.markdown
index a01e8933c..dab2405fb 100644
--- a/notes/0.13.9.markdown
+++ b/notes/0.13.9.markdown
@@ -3,14 +3,14 @@
[@eed3si9n]: https://github.com/eed3si9n
[@gkossakowski]: https://github.com/gkossakowski
[@jsuereth]: https://github.com/jsuereth
- [@dwijnand]: http://github.com/dwijnand
+ [@dwijnand]: https://github.com/dwijnand
[@ajsquared]: https://github.com/ajsquared
[@jroper]: https://github.com/jroper
[@kamilkloch]: https://github.com/kamilkloch
[@DavidPerezIngeniero]: https://github.com/DavidPerezIngeniero
[@PanAeon]: https://github.com/PanAeon
- [@asflierl]: http://github.com/asflierl
- [@matthewfarwell]: http://github.com/matthewfarwell
+ [@asflierl]: https://github.com/asflierl
+ [@matthewfarwell]: https://github.com/matthewfarwell
[SI9027]: https://issues.scala-lang.org/browse/SI-9027
[1950]: https://github.com/sbt/sbt/pull/1950
[1987]: https://github.com/sbt/sbt/pull/1987
diff --git a/notes/1.0.0.markdown b/notes/1.0.0.markdown
index f7c056a57..6c0c648a9 100644
--- a/notes/1.0.0.markdown
+++ b/notes/1.0.0.markdown
@@ -262,15 +262,15 @@ that would should work together to allow dependency locking.
Too many people to thank here. See [Credits][Credits]
- [Credits]: http://www.scala-sbt.org/1.x/docs/Credits.html
- [Migrating-from-sbt-013x]: http://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html
+ [Credits]: https://www.scala-sbt.org/1.x/docs/Credits.html
+ [Migrating-from-sbt-013x]: https://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html
[@eed3si9n]: https://github.com/eed3si9n
- [@dwijnand]: http://github.com/dwijnand
+ [@dwijnand]: https://github.com/dwijnand
[@jvican]: https://github.com/jvican
[@Duhemm]: https://github.com/Duhemm
[@jsuereth]: https://github.com/jsuereth
[@gkossakowski]: https://github.com/gkossakowski
- [sbt-1-0-roadmap]: http://developer.lightbend.com/blog/2017-04-18-sbt-1-0-roadmap-and-beta1/
+ [sbt-1-0-roadmap]: https://developer.lightbend.com/blog/2017-04-18-sbt-1-0-roadmap-and-beta1/
[@eed3si9n]: https://github.com/eed3si9n
[@jroper]: https://github.com/jroper
[@valydia]: https://github.com/valydia
diff --git a/notes/1.0.1.markdown b/notes/1.0.1.markdown
index d9be6431e..2a3ed2207 100644
--- a/notes/1.0.1.markdown
+++ b/notes/1.0.1.markdown
@@ -43,7 +43,7 @@ If you have a list of files:
[3481]: https://github.com/sbt/sbt/pull/3481
[util121]: https://github.com/sbt/util/pull/121
[@eed3si9n]: https://github.com/eed3si9n
- [@dwijnand]: http://github.com/dwijnand
+ [@dwijnand]: https://github.com/dwijnand
[@jvican]: https://github.com/jvican
[@Duhemm]: https://github.com/Duhemm
[@jroper]: https://github.com/jroper
diff --git a/notes/1.1.0.markdown b/notes/1.1.0.markdown
index 29ed283f7..723c20c27 100644
--- a/notes/1.1.0.markdown
+++ b/notes/1.1.0.markdown
@@ -138,7 +138,7 @@ For all scripted tests in which `project/build.properties` exist, the value of t
This allows you to define scripted tests that track the minimum supported sbt versions, e.g. 0.13.9 and 1.0.0-RC2. [#3564][3564]/[#3566][3566] by [@jonas][@jonas]
[@eed3si9n]: https://github.com/eed3si9n
- [@dwijnand]: http://github.com/dwijnand
+ [@dwijnand]: https://github.com/dwijnand
[@cunei]: https://github.com/cunei
[@jvican]: https://github.com/jvican
[@Duhemm]: https://github.com/Duhemm
diff --git a/notes/1.1.1.markdown b/notes/1.1.1.markdown
index 2115809d3..3bd7276cd 100644
--- a/notes/1.1.1.markdown
+++ b/notes/1.1.1.markdown
@@ -22,7 +22,7 @@ When set to `true`, sbt shell will automatically start sbt server. Otherwise, it
[#3922][3922] by [@swaldman][@swaldman]
[@eed3si9n]: https://github.com/eed3si9n
- [@dwijnand]: http://github.com/dwijnand
+ [@dwijnand]: https://github.com/dwijnand
[@cunei]: https://github.com/cunei
[@jvican]: https://github.com/jvican
[@Duhemm]: https://github.com/Duhemm
diff --git a/notes/about.markdown b/notes/about.markdown
index aedb2df72..2cd2b85b5 100644
--- a/notes/about.markdown
+++ b/notes/about.markdown
@@ -1 +1 @@
-[sbt](http://www.scala-sbt.org/) is the interactive build tool.
+[sbt](https://www.scala-sbt.org/) is the interactive build tool.
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/Command.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/Command.scala
index f3c320752..f17c17c75 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/Command.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/Command.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionContext.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionContext.scala
index 422069c97..e188837df 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionContext.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionContext.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionItem.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionItem.scala
index f10d989fc..a92151fc2 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionItem.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionItem.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionList.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionList.scala
index ffebf8bd8..86a3bbbc3 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionList.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionList.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionParams.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionParams.scala
index 3859a64d3..14bdab16e 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionParams.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/CompletionParams.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/TextEdit.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/TextEdit.scala
index 627772312..1eaec9be1 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/TextEdit.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/TextEdit.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CommandFormats.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CommandFormats.scala
index ac4efad4b..581f56a11 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CommandFormats.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CommandFormats.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionContextFormats.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionContextFormats.scala
index ef59ec048..ccb5556c1 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionContextFormats.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionContextFormats.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionItemFormats.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionItemFormats.scala
index 56c4aa129..dfd6d09be 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionItemFormats.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionItemFormats.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionListFormats.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionListFormats.scala
index 21397041d..3af676d52 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionListFormats.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionListFormats.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionParamsFormats.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionParamsFormats.scala
index 7599ee7ed..84cb427d9 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionParamsFormats.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/CompletionParamsFormats.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/TextEditFormats.scala b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/TextEditFormats.scala
index abf2f9c22..bbdd972ea 100644
--- a/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/TextEditFormats.scala
+++ b/protocol/src/main/contraband-scala/sbt/internal/langserver/codec/TextEditFormats.scala
@@ -1,5 +1,5 @@
/**
- * This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
+ * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
diff --git a/protocol/src/main/scala/sbt/internal/langserver/ErrorCodes.scala b/protocol/src/main/scala/sbt/internal/langserver/ErrorCodes.scala
index cef6c0f57..74611035a 100644
--- a/protocol/src/main/scala/sbt/internal/langserver/ErrorCodes.scala
+++ b/protocol/src/main/scala/sbt/internal/langserver/ErrorCodes.scala
@@ -16,7 +16,7 @@ object ErrorCodes {
// format: off
// Defined by the JSON-RPC 2.0 Specification
- // http://www.jsonrpc.org/specification#error_object
+ // https://www.jsonrpc.org/specification#error_object
//
// The error codes from and including -32768 to -32000 are reserved for pre-defined errors.
// Any code within this range, but not defined explicitly below is reserved for future use.
diff --git a/protocol/src/main/scala/sbt/protocol/Serialization.scala b/protocol/src/main/scala/sbt/protocol/Serialization.scala
index 6968f2912..c6aefc71f 100644
--- a/protocol/src/main/scala/sbt/protocol/Serialization.scala
+++ b/protocol/src/main/scala/sbt/protocol/Serialization.scala
@@ -71,13 +71,13 @@ object Serialization {
CompactPrinter(json).getBytes("UTF-8")
}
- /** This formats the message according to JSON-RPC. http://www.jsonrpc.org/specification */
+ /** This formats the message according to JSON-RPC. https://www.jsonrpc.org/specification */
private[sbt] def serializeResponseMessage(message: JsonRpcResponseMessage): Array[Byte] = {
import sbt.internal.protocol.codec.JsonRPCProtocol._
serializeResponse(message)
}
- /** This formats the message according to JSON-RPC. http://www.jsonrpc.org/specification */
+ /** This formats the message according to JSON-RPC. https://www.jsonrpc.org/specification */
private[sbt] def serializeNotificationMessage(
message: JsonRpcNotificationMessage,
): Array[Byte] = {
diff --git a/sbt/src/sbt-test/actions/input-task-dyn/build.sbt b/sbt/src/sbt-test/actions/input-task-dyn/build.sbt
index 8ceb394d3..46d9578d5 100644
--- a/sbt/src/sbt-test/actions/input-task-dyn/build.sbt
+++ b/sbt/src/sbt-test/actions/input-task-dyn/build.sbt
@@ -1,6 +1,6 @@
import complete.Parser
-// http://www.scala-sbt.org/0.13/docs/Input-Tasks.html
+// https://www.scala-sbt.org/0.13/docs/Input-Tasks.html
val runFoo = inputKey[Unit]("Runs Foo with passed arguments")
val check = taskKey[Unit]("")
diff --git a/sbt/src/sbt-test/actions/input-task/build.sbt b/sbt/src/sbt-test/actions/input-task/build.sbt
index ecc533f9b..3d61bdf90 100644
--- a/sbt/src/sbt-test/actions/input-task/build.sbt
+++ b/sbt/src/sbt-test/actions/input-task/build.sbt
@@ -1,6 +1,6 @@
import complete.Parser
-// http://www.scala-sbt.org/0.13/docs/Input-Tasks.html
+// https://www.scala-sbt.org/0.13/docs/Input-Tasks.html
val run2 = inputKey[Unit](
"Runs the main class twice with different argument lists separated by --")
diff --git a/sbt/src/sbt-test/apiinfo/show-circular-structure/test b/sbt/src/sbt-test/apiinfo/show-circular-structure/test
index 535ef6fcf..92d7d983e 100644
--- a/sbt/src/sbt-test/apiinfo/show-circular-structure/test
+++ b/sbt/src/sbt-test/apiinfo/show-circular-structure/test
@@ -1,4 +1,4 @@
-# test case for http://github.com/sbt/sbt/issues/676
+# test case for https://github.com/sbt/sbt/issues/676
> compile
# fails with StackOverflowException
> showApis
diff --git a/sbt/src/sbt-test/dependency-management/info/build.sbt b/sbt/src/sbt-test/dependency-management/info/build.sbt
index 185711816..899b8184d 100644
--- a/sbt/src/sbt-test/dependency-management/info/build.sbt
+++ b/sbt/src/sbt-test/dependency-management/info/build.sbt
@@ -20,8 +20,8 @@ lazy val customInfo = settingKey[Boolean]("")
def inlineXML(addInfo: Boolean, organization: String, moduleID: String, version: String): NodeSeq =
if (addInfo)
(
-
-
+
+
ScalaQuery is a type-safe database query API for Scala.
diff --git a/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-compiler/2.11.8/ivy.xml b/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-compiler/2.11.8/ivy.xml
index c0252721f..06e878d64 100644
--- a/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-compiler/2.11.8/ivy.xml
+++ b/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-compiler/2.11.8/ivy.xml
@@ -1,8 +1,8 @@
-
-
+
+
Scala Compiler
diff --git a/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-library/2.11.8/ivy.xml b/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-library/2.11.8/ivy.xml
index fb4924a58..d95819442 100644
--- a/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-library/2.11.8/ivy.xml
+++ b/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-library/2.11.8/ivy.xml
@@ -1,8 +1,8 @@
-
-
+
+
Scala Standard Library
diff --git a/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-reflect/2.11.8/ivy.xml b/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-reflect/2.11.8/ivy.xml
index 169793932..0f9f4a0eb 100644
--- a/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-reflect/2.11.8/ivy.xml
+++ b/sbt/src/sbt-test/dependency-management/scala-organization/repo/org.other/scala-reflect/2.11.8/ivy.xml
@@ -1,8 +1,8 @@
-
-
+
+
Scala Reflection Library
diff --git a/sbt/src/sbt-test/nio/code-formatter/.scalafmt.conf b/sbt/src/sbt-test/nio/code-formatter/.scalafmt.conf
index 8a81e8505..b836357eb 100644
--- a/sbt/src/sbt-test/nio/code-formatter/.scalafmt.conf
+++ b/sbt/src/sbt-test/nio/code-formatter/.scalafmt.conf
@@ -3,7 +3,7 @@ maxColumn = 100
project.git = true
project.excludeFilters = [ "\\Wsbt-test\\W", "\\Winput_sources\\W", "\\Wcontraband-scala\\W" ]
-# http://docs.scala-lang.org/style/scaladoc.html recommends the JavaDoc style.
+# https://docs.scala-lang.org/style/scaladoc.html recommends the JavaDoc style.
# scala/scala is written that way too https://github.com/scala/scala/blob/v2.12.2/src/library/scala/Predef.scala
docstrings = JavaDoc
@@ -11,7 +11,7 @@ docstrings = JavaDoc
spaces.inImportCurlyBraces = true
# This is more idiomatic Scala.
-# http://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments
+# https://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments
align.openParenCallSite = false
align.openParenDefnSite = false
diff --git a/sbt/src/sbt-test/project/auto-plugins/project/Q.scala b/sbt/src/sbt-test/project/auto-plugins/project/Q.scala
index a6c407bcc..001fd1eae 100644
--- a/sbt/src/sbt-test/project/auto-plugins/project/Q.scala
+++ b/sbt/src/sbt-test/project/auto-plugins/project/Q.scala
@@ -1,4 +1,4 @@
-package sbttest // you need package http://stackoverflow.com/questions/9822008/
+package sbttest // you need package https://stackoverflow.com/questions/9822008/
import sbt._, Keys._
import java.util.concurrent.atomic.{AtomicInteger => AInt}
diff --git a/sbt/src/sbt-test/project/binary-plugin/changes/define/A.scala b/sbt/src/sbt-test/project/binary-plugin/changes/define/A.scala
index 2966e091c..e9654ba5d 100644
--- a/sbt/src/sbt-test/project/binary-plugin/changes/define/A.scala
+++ b/sbt/src/sbt-test/project/binary-plugin/changes/define/A.scala
@@ -1,4 +1,4 @@
-package sbttest // you need package http://stackoverflow.com/questions/9822008/
+package sbttest // you need package https://stackoverflow.com/questions/9822008/
import sbt._, Keys._
diff --git a/vscode-sbt-scala/client/syntaxes/Scala.tmLanguage b/vscode-sbt-scala/client/syntaxes/Scala.tmLanguage
index 2dc4860cd..aee49eaf0 100644
--- a/vscode-sbt-scala/client/syntaxes/Scala.tmLanguage
+++ b/vscode-sbt-scala/client/syntaxes/Scala.tmLanguage
@@ -1,5 +1,5 @@
-
+
fileTypes