From 50b908eb347723332c62955e4db8213d4cca6da1 Mon Sep 17 00:00:00 2001 From: kenji yoshida <6b656e6a69@gmail.com> Date: Tue, 8 Oct 2024 07:49:08 +0900 Subject: [PATCH] add JDK 21 test --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e66667a..b2711e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - java: 8 sbt_version: "1.2.8" - java: 8 - - java: 11 + - java: 21 steps: - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: diff --git a/build.sbt b/build.sbt index 7594c7c..e9f0ac4 100644 --- a/build.sbt +++ b/build.sbt @@ -38,7 +38,7 @@ libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "4.20.8" % "test") // Scripted enablePlugins(SbtPlugin) scriptedLaunchOpts := { - scriptedLaunchOpts.value ++ Seq("-Xmx1024M", "-XX:MaxPermSize=256M", "-Dplugin.version=" + version.value) + scriptedLaunchOpts.value ++ Seq("-Xmx1024M", "-Dplugin.version=" + version.value) } scriptedBufferLog := false