diff --git a/project/JdkOptions.scala b/project/JdkOptions.scala index b5bd7a1d09..b5e4ff8864 100644 --- a/project/JdkOptions.scala +++ b/project/JdkOptions.scala @@ -23,7 +23,7 @@ import sbt.librarymanagement.VersionNumber object JdkOptions extends AutoPlugin { 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]( "Target the system JDK instead of building against JDK 8. When this is enabled resulting artifacts may not work on JDK 8!") } diff --git a/project/TestExtras.scala b/project/TestExtras.scala index cac9e1b91f..9cdada47fa 100644 --- a/project/TestExtras.scala +++ b/project/TestExtras.scala @@ -27,7 +27,7 @@ object TestExtras { val onlyTestTags = 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._