From 747416173a24bdae57fd5eb0fae729298d6d9424 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:10:59 -0400 Subject: [PATCH 01/10] https://apocalisp.wordpress.com --- .../src/main/scala/sbt/internal/util/HList.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0eb4edd42..fea91da92 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 From 5ab94fa2ac187297cdabd62634bd82e4ac412199 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:01 -0400 Subject: [PATCH 02/10] https://developer.lightbend.com --- notes/1.0.0.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/1.0.0.markdown b/notes/1.0.0.markdown index f7c056a57..66437341d 100644 --- a/notes/1.0.0.markdown +++ b/notes/1.0.0.markdown @@ -270,7 +270,7 @@ Too many people to thank here. See [Credits][Credits] [@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 From 52105ab62c8c8ee7356ce7e75e7a1b743a1ed041 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:02 -0400 Subject: [PATCH 03/10] https://docs.scala-lang.org --- .scalafmt.conf | 4 ++-- sbt/src/sbt-test/nio/code-formatter/.scalafmt.conf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 8a81e8505..b836357eb 100644 --- a/.scalafmt.conf +++ b/.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/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 From 5408c1021e8811302eae8f318b762b5549f54939 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:04 -0400 Subject: [PATCH 04/10] https://github.com --- notes/0.13.11.markdown | 6 +++--- notes/0.13.12.markdown | 6 +++--- notes/0.13.8.markdown | 2 +- notes/0.13.9.markdown | 6 +++--- notes/1.0.0.markdown | 2 +- notes/1.0.1.markdown | 2 +- notes/1.1.0.markdown | 2 +- notes/1.1.1.markdown | 2 +- sbt/src/sbt-test/apiinfo/show-circular-structure/test | 2 +- sbt/src/sbt-test/dependency-management/info/build.sbt | 4 ++-- 10 files changed, 17 insertions(+), 17 deletions(-) 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.8.markdown b/notes/0.13.8.markdown index 5b8f36a15..1699e41f2 100644 --- a/notes/0.13.8.markdown +++ b/notes/0.13.8.markdown @@ -6,7 +6,7 @@ [@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 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 66437341d..f89cce1d0 100644 --- a/notes/1.0.0.markdown +++ b/notes/1.0.0.markdown @@ -265,7 +265,7 @@ 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 [@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 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/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. From a348a0f849a2be401a08f37ce5f182d8fc55e41d Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:05 -0400 Subject: [PATCH 05/10] https://jsoup.org --- sbt/src/sbt-test/dependency-management/url/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbt/src/sbt-test/dependency-management/url/build.sbt b/sbt/src/sbt-test/dependency-management/url/build.sbt index f3b8f6fa2..1170270b3 100644 --- a/sbt/src/sbt-test/dependency-management/url/build.sbt +++ b/sbt/src/sbt-test/dependency-management/url/build.sbt @@ -3,7 +3,7 @@ import sbt.internal.inc.classpath.ClasspathUtilities lazy val root = (project in file(".")). settings( ivyPaths := IvyPaths(baseDirectory.value, Some(target.value / "ivy-cache")), - libraryDependencies += "org.jsoup" % "jsoup" % "1.9.1" % Test from "http://jsoup.org/packages/jsoup-1.9.1.jar", + libraryDependencies += "org.jsoup" % "jsoup" % "1.9.1" % Test from "https://jsoup.org/packages/jsoup-1.9.1.jar", ivyLoggingLevel := UpdateLogging.Full, TaskKey[Unit]("checkInTest") := checkClasspath(Test).value, TaskKey[Unit]("checkInCompile") := checkClasspath(Compile).value From 931a2f003bfa9fa384bb91ad7c8bbbff1e784585 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:06 -0400 Subject: [PATCH 06/10] https://stackoverflow.com --- CONTRIBUTING.md | 2 +- README.md | 2 +- sbt/src/sbt-test/project/auto-plugins/project/Q.scala | 2 +- sbt/src/sbt-test/project/binary-plugin/changes/define/A.scala | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1f14b8aa6..25f5b5bec 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ - [StackOverflow]: http://stackoverflow.com/tags/sbt + [StackOverflow]: https://stackoverflow.com/tags/sbt [Setup]: http://www.scala-sbt.org/release/docs/Getting-Started/Setup [Issues]: https://github.com/sbt/sbt/issues [sbt-contrib]: https://gitter.im/sbt/sbt-contrib diff --git a/README.md b/README.md index 521b0edd0..ec224cf6a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [Setup]: http://www.scala-sbt.org/release/docs/Getting-Started/Setup [FAQ]: http://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 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._ From 746405c9366b330454e55ea95c1faf377afda393 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:07 -0400 Subject: [PATCH 07/10] https://www.apple.com --- vscode-sbt-scala/client/syntaxes/Scala.tmLanguage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5579727148b45e41b119725838c321b93ae1f162 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:09 -0400 Subject: [PATCH 08/10] https://www.jsonrpc.org --- .../src/main/scala/sbt/internal/langserver/ErrorCodes.scala | 2 +- protocol/src/main/scala/sbt/protocol/Serialization.scala | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 bd2e97ad3..81fbd7f57 100644 --- a/protocol/src/main/scala/sbt/protocol/Serialization.scala +++ b/protocol/src/main/scala/sbt/protocol/Serialization.scala @@ -69,13 +69,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] = { From d4cad80bc3316e18babe2279ef1956def4c7275c Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:10 -0400 Subject: [PATCH 09/10] https://www.scala-lang.org --- sbt/src/sbt-test/actions/external-doc/build.sbt | 2 +- .../repo/org.other/scala-compiler/2.11.8/ivy.xml | 4 ++-- .../repo/org.other/scala-library/2.11.8/ivy.xml | 4 ++-- .../repo/org.other/scala-reflect/2.11.8/ivy.xml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/sbt/src/sbt-test/actions/external-doc/build.sbt b/sbt/src/sbt-test/actions/external-doc/build.sbt index 834ad7004..fe2d502d8 100644 --- a/sbt/src/sbt-test/actions/external-doc/build.sbt +++ b/sbt/src/sbt-test/actions/external-doc/build.sbt @@ -24,7 +24,7 @@ val bResolver = Def.setting { val apiBaseSetting = apiURL := Some(apiBase(name.value)) def apiBase(projectName: String) = url(s"http://example.org/${projectName}") -def scalaLibraryBase(v: String) = url(s"http://www.scala-lang.org/api/$v/") +def scalaLibraryBase(v: String) = url(s"https://www.scala-lang.org/api/$v/") def addDep(projectName: String) = libraryDependencies += organization.value %% projectName % version.value 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 From c9d5cbe808e11603ecf0f195402f4e31b145085b Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 Sep 2019 14:11:13 -0400 Subject: [PATCH 10/10] https://www.scala-sbt.org --- CONTRIBUTING.md | 2 +- DEVELOPING.md | 2 +- README.md | 6 +++--- main-settings/src/main/scala/sbt/Structure.scala | 2 +- main-settings/src/main/scala/sbt/std/InputWrapper.scala | 2 +- main-settings/src/main/scala/sbt/std/TaskMacro.scala | 6 +++--- notes/0.13.13.markdown | 2 +- notes/0.13.14.markdown | 2 +- notes/0.13.7.markdown | 2 +- notes/0.13.8.markdown | 2 +- notes/1.0.0.markdown | 4 ++-- notes/about.markdown | 2 +- .../contraband-scala/sbt/internal/langserver/Command.scala | 2 +- .../sbt/internal/langserver/CompletionContext.scala | 2 +- .../sbt/internal/langserver/CompletionItem.scala | 2 +- .../sbt/internal/langserver/CompletionList.scala | 2 +- .../sbt/internal/langserver/CompletionParams.scala | 2 +- .../contraband-scala/sbt/internal/langserver/TextEdit.scala | 2 +- .../sbt/internal/langserver/codec/CommandFormats.scala | 2 +- .../langserver/codec/CompletionContextFormats.scala | 2 +- .../internal/langserver/codec/CompletionItemFormats.scala | 2 +- .../internal/langserver/codec/CompletionListFormats.scala | 2 +- .../internal/langserver/codec/CompletionParamsFormats.scala | 2 +- .../sbt/internal/langserver/codec/TextEditFormats.scala | 2 +- sbt/src/sbt-test/actions/external-doc/build.sbt | 2 +- sbt/src/sbt-test/actions/input-task-dyn/build.sbt | 2 +- sbt/src/sbt-test/actions/input-task/build.sbt | 2 +- 27 files changed, 32 insertions(+), 32 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 25f5b5bec..7a90de47c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ [StackOverflow]: https://stackoverflow.com/tags/sbt - [Setup]: http://www.scala-sbt.org/release/docs/Getting-Started/Setup + [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 b6f9ad032..630b90089 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -160,7 +160,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 ec224cf6a..910a7cfda 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ [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]: https://stackoverflow.com/tags/sbt [asking]: https://stackoverflow.com/questions/ask?tags=sbt @@ -21,7 +21,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/main-settings/src/main/scala/sbt/Structure.scala b/main-settings/src/main/scala/sbt/Structure.scala index f29ca0fa5..5d7eadad3 100644 --- a/main-settings/src/main/scala/sbt/Structure.scala +++ b/main-settings/src/main/scala/sbt/Structure.scala @@ -597,7 +597,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 13690ceb9..01cb74bee 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.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 1699e41f2..3f77b4f09 100644 --- a/notes/0.13.8.markdown +++ b/notes/0.13.8.markdown @@ -13,7 +13,7 @@ [@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/1.0.0.markdown b/notes/1.0.0.markdown index f89cce1d0..6c0c648a9 100644 --- a/notes/1.0.0.markdown +++ b/notes/1.0.0.markdown @@ -262,8 +262,8 @@ 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]: https://github.com/dwijnand [@jvican]: https://github.com/jvican 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/sbt/src/sbt-test/actions/external-doc/build.sbt b/sbt/src/sbt-test/actions/external-doc/build.sbt index fe2d502d8..834ad7004 100644 --- a/sbt/src/sbt-test/actions/external-doc/build.sbt +++ b/sbt/src/sbt-test/actions/external-doc/build.sbt @@ -24,7 +24,7 @@ val bResolver = Def.setting { val apiBaseSetting = apiURL := Some(apiBase(name.value)) def apiBase(projectName: String) = url(s"http://example.org/${projectName}") -def scalaLibraryBase(v: String) = url(s"https://www.scala-lang.org/api/$v/") +def scalaLibraryBase(v: String) = url(s"http://www.scala-lang.org/api/$v/") def addDep(projectName: String) = libraryDependencies += organization.value %% projectName % version.value 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 --")