From 0446ec26cf27ed2469acadb56532059154567c16 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Mon, 27 May 2019 10:07:35 -0700 Subject: [PATCH] Bump launcher This new versions layers the classpath so that the test-interface-1.0.jar appears before the scala library. This allows us to bypass reconstructing the AppConfiguration at startup which reduces the metaspace utilization of sbt. --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 4632346ba..8c1226c42 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -32,7 +32,7 @@ object Dependencies { private val libraryManagementCore = "org.scala-sbt" %% "librarymanagement-core" % lmVersion private val libraryManagementIvy = "org.scala-sbt" %% "librarymanagement-ivy" % lmVersion - val launcherVersion = "1.0.4" + val launcherVersion = "1.1.0" val launcherInterface = "org.scala-sbt" % "launcher-interface" % launcherVersion val rawLauncher = "org.scala-sbt" % "launcher" % launcherVersion val testInterface = "org.scala-sbt" % "test-interface" % "1.0"