Skip to content

Commit

Permalink
Avoid making an execution not used later.
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsorr committed Sep 7, 2024
1 parent ff10215 commit 9258e8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ credentials += Credentials(Path.userHome / ".sbt" / "sonatype_credentials")

Test / fork := true
javaOptions ++= {
if (System.getProperty("java.version").startsWith("1.8.0"))
Seq("-Xms512M", "-Xmx2048M", "-XX:+CMSClassUnloadingEnabled", "-Duser.timezone=GMT")
else Seq("-Xms512M", "-Xmx2048M", "-Duser.timezone=GMT")
Seq("-Xms512M", "-Xmx2048M", "-Duser.timezone=GMT") ++ (if (System.getProperty("java.version").startsWith("1.8.0"))
Seq("-XX:+CMSClassUnloadingEnabled")
else Seq.empty)
}

licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
Expand Down

0 comments on commit 9258e8c

Please sign in to comment.