Remove redundant semicolons

This commit is contained in:
Matthew de Detrich 2023-05-27 10:16:47 +02:00 committed by Matthew de Detrich
parent ee715ea6ee
commit 59423c218a
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ import sbt.librarymanagement.VersionNumber
object JdkOptions extends AutoPlugin { object JdkOptions extends AutoPlugin {
object autoImport { object autoImport {
val jdk8home = settingKey[String]("JDK 8 home. Only needs to be set when it cannot be auto-detected by sbt"); val jdk8home = settingKey[String]("JDK 8 home. Only needs to be set when it cannot be auto-detected by sbt")
val targetSystemJdk = settingKey[Boolean]( val targetSystemJdk = settingKey[Boolean](
"Target the system JDK instead of building against JDK 8. When this is enabled resulting artifacts may not work on JDK 8!") "Target the system JDK instead of building against JDK 8. When this is enabled resulting artifacts may not work on JDK 8!")
} }

View file

@ -27,7 +27,7 @@ object TestExtras {
val onlyTestTags = val onlyTestTags =
settingKey[Set[String]]("Tags of tests to be ran. Example usage: -Dpekko.test.tags.only=long-running") settingKey[Set[String]]("Tags of tests to be ran. Example usage: -Dpekko.test.tags.only=long-running")
val checkTestsHaveRun = taskKey[Unit]("Verify a number of notable tests have actually run"); val checkTestsHaveRun = taskKey[Unit]("Verify a number of notable tests have actually run")
} }
import Keys._ import Keys._