Merge pull request #5041 from jsoref/https

Https
This commit is contained in:
eugene yokota 2020-06-14 17:34:58 -04:00 committed by GitHub
commit 2b557851ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
45 changed files with 68 additions and 68 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
---------

View File

@ -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

View File

@ -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._

View File

@ -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)

View File

@ -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 }

View File

@ -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

View File

@ -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

View File

@ -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]

View File

@ -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!

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
[sbt](http://www.scala-sbt.org/) is the interactive build tool.
[sbt](https://www.scala-sbt.org/) is the interactive build tool.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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] = {

View File

@ -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]("")

View File

@ -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 --")

View File

@ -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

View File

@ -20,8 +20,8 @@ lazy val customInfo = settingKey[Boolean]("")
def inlineXML(addInfo: Boolean, organization: String, moduleID: String, version: String): NodeSeq =
if (addInfo)
(<info organisation={organization} module={moduleID} revision={version}>
<license name="Two-clause BSD-style" url="http://github.com/szeiger/scala-query/blob/master/LICENSE.txt" />
<description homepage="http://github.com/szeiger/scala-query/">
<license name="Two-clause BSD-style" url="https://github.com/szeiger/scala-query/blob/master/LICENSE.txt" />
<description homepage="https://github.com/szeiger/scala-query/">
ScalaQuery is a type-safe database query API for Scala.
</description>
</info>

View File

@ -1,8 +1,8 @@
<?xml version='1.0' encoding='ISO-8859-1'?>
<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra">
<info publication="20160520164059" status="release" revision="2.11.8" module="scala-compiler" organisation="org.other">
<license url="http://www.scala-lang.org/license.html" name="BSD 3-Clause"/>
<description homepage="http://www.scala-lang.org">
<license url="https://www.scala-lang.org/license.html" name="BSD 3-Clause"/>
<description homepage="https://www.scala-lang.org">
Scala Compiler
</description>
</info>

View File

@ -1,8 +1,8 @@
<?xml version='1.0' encoding='ISO-8859-1'?>
<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra">
<info publication="20160520164058" status="release" revision="2.11.8" module="scala-library" organisation="org.other">
<license url="http://www.scala-lang.org/license.html" name="BSD 3-Clause"/>
<description homepage="http://www.scala-lang.org">
<license url="https://www.scala-lang.org/license.html" name="BSD 3-Clause"/>
<description homepage="https://www.scala-lang.org">
Scala Standard Library
</description>
</info>

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra">
<info organisation="org.other" module="scala-reflect" revision="2.11.8" status="release" publication="20160520164058">
<license name="BSD 3-Clause" url="http://www.scala-lang.org/license.html"/>
<description homepage="http://www.scala-lang.org">
<license name="BSD 3-Clause" url="https://www.scala-lang.org/license.html"/>
<description homepage="https://www.scala-lang.org">
Scala Reflection Library
</description>
</info>

View File

@ -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

View File

@ -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}

View File

@ -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._

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>