-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: match package Java-Version to current compile release, close R…
…NG-46
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ Global / gatlingDevelopers := Seq( | |
GatlingDeveloper("[email protected]", "Guillaume Galy", isGatlingCorp = true) | ||
) | ||
|
||
val compilerRelease = 21 | ||
val graalvmJdkVersion = "23.0.0" | ||
val graalvmJsVersion = "24.1.0" | ||
val coursierVersion = "2.1.12" | ||
|
@@ -29,7 +30,7 @@ lazy val adapter = (project in file("adapter")) | |
.enablePlugins(GatlingOssPlugin) | ||
.settings( | ||
name := "gatling-jvm-to-js-adapter", | ||
gatlingCompilerRelease := 21, | ||
gatlingCompilerRelease := compilerRelease, | ||
Compile / javacOptions ++= Seq("-encoding", "utf8", "-Xdoclint:none"), // FIXME: see why -Xdoclint:none does not seem to work | ||
Test / javacOptions ++= Seq("-encoding", "utf8"), | ||
spotless := SpotlessConfig( | ||
|
@@ -53,6 +54,9 @@ lazy val adapter = (project in file("adapter")) | |
| jdk: "$graalvmJdkVersion", | ||
| js: "$graalvmJsVersion" | ||
| }, | ||
| java: { | ||
| compilerRelease: "$compilerRelease" | ||
| }, | ||
| coursier: "$coursierVersion", | ||
| gatling: { | ||
| core: "$gatlingVersion", | ||
|