Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 488eb5d

Browse files
committed
Use SBT 1.5.0
1 parent 006ca7f commit 488eb5d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ lazy val root = (project in file("."))
1414
// javaHome := Some(file("/home/soc/apps/zulu6.19.0.1-jdk6.0.103-linux_x64/")),
1515
libraryDependencies += "junit" % "junit" % "4.13" % Test,
1616
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,
17-
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a")),
17+
Test / testOptions := Seq(Tests.Argument(TestFrameworks.JUnit, "-a")),
1818
/*
1919
publishTo := {
2020
val nexus = "https://oss.sonatype.org/"
2121
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
2222
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
2323
},
2424
*/
25-
packageOptions in (Compile, packageBin) += {
25+
Compile / packageBin / packageOptions += {
2626
import java.util.jar.{Attributes, Manifest}
2727
val manifest = new Manifest
2828
manifest.getMainAttributes.put(new Attributes.Name("Automatic-Module-Name"), "dev.dirs")

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.8
1+
sbt.version=1.5.0

0 commit comments

Comments
 (0)