mirror of https://github.com/sbt/sbt.git
Merge pull request #2582 from eed3si9n/wip/sbinary
Remove external dependencies
This commit is contained in:
commit
dc6fbaff8a
|
|
@ -173,7 +173,7 @@ lazy val mainSettingsProj = (project in mainPath / "settings").
|
|||
settings(
|
||||
testedBaseSettings,
|
||||
name := "Main Settings",
|
||||
libraryDependencies ++= Seq(sbinary, utilApplyMacro, compilerInterface, utilRelation,
|
||||
libraryDependencies ++= Seq(utilCache, utilApplyMacro, compilerInterface, utilRelation,
|
||||
utilLogging, sbtIO, utilCompletion, compilerClasspath, libraryManagement)
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ object Dependencies {
|
|||
lazy val utilApplyMacro = "org.scala-sbt" %% "util-apply-macro" % utilVersion
|
||||
lazy val utilRelation = "org.scala-sbt" %% "util-relation" % utilVersion
|
||||
lazy val utilLogic = "org.scala-sbt" %% "util-logic" % utilVersion
|
||||
lazy val utilCache = "org.scala-sbt" %% "util-cache" % utilVersion
|
||||
lazy val utilTracking = "org.scala-sbt" %% "util-tracking" % utilVersion
|
||||
lazy val utilScripted = "org.scala-sbt" %% "util-scripted" % utilVersion
|
||||
lazy val libraryManagement = "org.scala-sbt" %% "librarymanagement" % librarymanagementVersion
|
||||
|
|
@ -37,13 +38,6 @@ object Dependencies {
|
|||
lazy val compilerApiInfo = "org.scala-sbt" %% "incrementalcompiler-apiinfo" % incrementalcompilerVersion
|
||||
lazy val compilerIvyIntegration = "org.scala-sbt" %% "incrementalcompiler-ivy-integration" % incrementalcompilerVersion
|
||||
|
||||
lazy val jline = "jline" % "jline" % "2.13"
|
||||
lazy val ivy = "org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-2cc8d2761242b072cedb0a04cb39435c4fa24f9a"
|
||||
lazy val jsch = "com.jcraft" % "jsch" % "0.1.46" intransitive ()
|
||||
lazy val sbinary = "org.scala-tools.sbinary" %% "sbinary" % "0.4.2"
|
||||
lazy val sbtSerialization = "org.scala-sbt" %% "serialization" % "0.1.2"
|
||||
lazy val scalaCompiler = Def.setting { "org.scala-lang" % "scala-compiler" % scalaVersion.value }
|
||||
lazy val scalaReflect = Def.setting { "org.scala-lang" % "scala-reflect" % scalaVersion.value }
|
||||
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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue