mirror of https://github.com/sbt/sbt.git
Bump a few stuff (#826)
* Bump a few stuff * Update README Looks like tut changed its default variable name logic
This commit is contained in:
parent
c7dabdf19a
commit
2e7df0e8dd
|
|
@ -472,7 +472,7 @@ The resolution process will go on by giving successive `Resolution`s, until the
|
|||
`start` above is only the initial state - it is far from over, as the `isDone` method on it tells,
|
||||
```scala
|
||||
scala> start.isDone
|
||||
res6: Boolean = false
|
||||
res2: Boolean = false
|
||||
```
|
||||
|
||||
|
||||
|
|
@ -511,7 +511,7 @@ scala> MavenRepository(
|
|||
| "https://nexus.corp.com/content/repositories/releases",
|
||||
| authentication = Some(Authentication("user", "pass"))
|
||||
| )
|
||||
res8: coursier.maven.MavenRepository = MavenRepository(https://nexus.corp.com/content/repositories/releases,None,true,Some(Authentication(user, *******)))
|
||||
res4: coursier.maven.MavenRepository = MavenRepository(https://nexus.corp.com/content/repositories/releases,None,true,Some(Authentication(user, *******)))
|
||||
```
|
||||
|
||||
Now that we have repositories, we're going to mix these with things from the `coursier-cache` module,
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ object CrossDeps {
|
|||
|
||||
def fastParse = setting("com.lihaoyi" %%% "fastparse" % SharedVersions.fastParse)
|
||||
def scalazCore = setting("org.scalaz" %%% "scalaz-core" % SharedVersions.scalaz)
|
||||
def scalaJsDom = setting("org.scala-js" %%% "scalajs-dom" % "0.9.3")
|
||||
def utest = setting("com.lihaoyi" %%% "utest" % "0.5.4")
|
||||
def scalaJsDom = setting("org.scala-js" %%% "scalajs-dom" % "0.9.5")
|
||||
def utest = setting("com.lihaoyi" %%% "utest" % "0.6.4")
|
||||
def scalaJsJquery = setting("be.doeraene" %%% "scalajs-jquery" % "0.9.2")
|
||||
def scalaJsReact = setting("com.github.japgolly.scalajs-react" %%% "core" % "0.9.0")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@ object SharedVersions {
|
|||
def fastParse = "1.0.0"
|
||||
def proguard = "5.3.3"
|
||||
def scalaNative = "0.3.6"
|
||||
def scalaz = "7.2.16"
|
||||
def scalaz = "7.2.20"
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=1.1.1
|
||||
sbt.version=1.1.2
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ plugins_(
|
|||
"com.jsuereth" % "sbt-pgp" % "1.1.0",
|
||||
"com.lightbend.sbt" % "sbt-proguard" % "0.3.0",
|
||||
"com.github.gseitz" % "sbt-release" % "1.0.7",
|
||||
"org.scala-js" % "sbt-scalajs" % "0.6.20",
|
||||
"org.scala-js" % "sbt-scalajs" % "0.6.22",
|
||||
"io.get-coursier" % "sbt-shading" % coursierVersion,
|
||||
"org.xerial.sbt" % "sbt-sonatype" % "2.3",
|
||||
"com.timushev.sbt" % "sbt-updates" % "0.3.4",
|
||||
"org.tpolecat" % "tut-plugin" % "0.6.1"
|
||||
"org.tpolecat" % "tut-plugin" % "0.6.3"
|
||||
)
|
||||
|
||||
libs ++= Seq(
|
||||
|
|
|
|||
Loading…
Reference in New Issue