mirror of https://github.com/sbt/sbt.git
This commit is contained in:
parent
d4cad80bc3
commit
c9d5cbe808
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
---------
|
||||
|
|
|
|||
|
|
@ -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._
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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!
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
[sbt](http://www.scala-sbt.org/) is the interactive build tool.
|
||||
[sbt](https://www.scala-sbt.org/) is the interactive build tool.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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]("")
|
||||
|
|
|
|||
|
|
@ -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 --")
|
||||
|
|
|
|||
Loading…
Reference in New Issue