From 2657e06a30f02dc3f5606869263841fd0c3475a2 Mon Sep 17 00:00:00 2001 From: "A. G" Date: Sun, 22 Oct 2023 10:26:05 +0100 Subject: [PATCH] another build.sbt syntax update to make latest sbt version happy --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 823681f..6533dbc 100644 --- a/build.sbt +++ b/build.sbt @@ -25,10 +25,10 @@ scalacOptions ++= Seq( // disable generation of scala- folders, we do not need cross compilation crossPaths := false -sources in doc in Compile := List() // do NOT generate Scaladoc, it is a waste of time +Compile / doc / sources := List() // do NOT generate Scaladoc, it is a waste of time // Get rid of scala-{version} folders -sourceDirectories in Compile ~= ( dirs => +Compile / sourceDirectories ~= ( dirs => dirs.filterNot(_.absolutePath.endsWith("-2.11")).filterNot(_.absolutePath.endsWith("-2.12")) )