Adjust to 1.0.x

This commit is contained in:
Eugene Yokota 2016-07-22 16:25:26 -04:00
parent 75deb4e55d
commit fe1a24cf7c
10 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,7 @@ package sbt
import java.io.File
import java.net.URI
import java.util.Locale
import Project.{ Initialize => _, Setting => _, _ }
import Project._
import Keys.{ appConfiguration, stateBuildStructure, commands, configuration, historyPath, projectCommand, sessionSettings, shellPrompt, serverPort, thisProject, thisProjectRef, watch }
import Scope.{ GlobalScope, ThisScope }
import Def.{ Flattened, Initialize, ScopedKey, Setting }

View File

@ -38,6 +38,9 @@ object Dependencies {
lazy val compilerApiInfo = "org.scala-sbt" %% "zinc-apiinfo" % zincVersion
lazy val compilerIvyIntegration = "org.scala-sbt" %% "zinc-ivy-integration" % zincVersion
lazy val json4s = "org.json4s" %% "json4s" % "3.2.10"
lazy val json4sNative = "org.json4s" %% "json4s-native" % "3.2.10"
lazy val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.11.4"
lazy val specs2 = "org.specs2" %% "specs2" % "2.3.11"
lazy val junit = "junit" % "junit" % "4.11"