Skip to content

Commit

Permalink
SBT 1.0.0 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumebort committed Aug 24, 2017
1 parent 05ff9be commit 1110f1a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -199,9 +199,9 @@ lazy val root =
allJars.
flatMap(x => x.metadata.get(moduleID.key).map(m => x.data -> m)).
collect {
case (jar, ModuleID("org.scala-lang", "scala-library", _, _, _, _, _, _, _, _, _)) =>
case (jar, module) if module.name == "scala-library" =>
jar -> "https://www.scala-lang.org/api/current/"
case (jar, ModuleID("co.fs2", "fs2-core_2.12", _, _, _, _, _, _, _, _, _)) =>
case (jar, module) if module.name == "fs2-core_2.12" =>
jar -> "https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-core_2.12/0.9.5/fs2-core_2.12-0.9.5-javadoc.jar/!/"
}.
toMap.
Expand Down
1 change: 1 addition & 0 deletions project/build.properties
@@ -0,0 +1 @@
sbt.version=1.0.0
6 changes: 3 additions & 3 deletions project/plugins.sbt
@@ -1,4 +1,4 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0-M1")

0 comments on commit 1110f1a

Please sign in to comment.