From 95d20669eefe23e0e1375e735ae0d91ed031a4c3 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Thu, 11 May 2023 14:53:08 +0200 Subject: [PATCH] deps: bump sbt-pack to latest 0.17 This pr bumps sbt-pack to the latest 0.17 and also accounts for a breaking change that was introduced in https://github.com/xerial/sbt-pack/pull/324 meaning that `pack` now must be scoped. --- project/Build.scala | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index c5586c68f981..30c3aded5be4 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -1949,7 +1949,7 @@ object ScaladocConfigs { } lazy val DefaultGenerationConfig = Def.task { - def distLocation = (dist / pack).value + def distLocation = (dist / Compile / pack).value DefaultGenerationSettings.value } diff --git a/project/plugins.sbt b/project/plugins.sbt index aba843ca2c3c..2d8c9d22928d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -12,7 +12,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10") addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0") -addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.13") +addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.17") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")