Skip to content

Commit 8dd84f1

Browse files
committed
JDK 21
1 parent e441a91 commit 8dd84f1

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,16 @@ enabling navigation between step definitions and gherkin steps when using cucumb
2828

2929
## Development
3030

31-
The plugin depends on:
32-
- [Gherkin plugin](https://plugins.jetbrains.com/plugin/9164-gherkin)
33-
- [Scala plugin](https://plugins.jetbrains.com/plugin/1347-scala)
34-
- project [cucumber-jvm-scala](https://github.com/cucumber/cucumber-jvm-scala)
35-
3631
To setup the development environment, follow the following steps:
3732

3833
1. `git clone https://github.com/vbmacher/intellij-cucumber-scala.git`
39-
2. Configure JDK 17
34+
2. Configure JDK 21 (see https://plugins.jetbrains.com/docs/intellij/setting-up-theme-environment.html#add-jdk-and-intellij-platform-plugin-sdk)
4035
3. Open the project in IDEA
4136

42-
The plugin is using [sbt-idea-plugin](https://github.com/JetBrains/sbt-idea-plugin). Please refer to that plugin documentation
43-
to get information about available tasks.
37+
The plugin depends on:
38+
- [Gherkin plugin](https://plugins.jetbrains.com/plugin/9164-gherkin)
39+
- [Scala plugin](https://plugins.jetbrains.com/plugin/1347-scala)
40+
- project [cucumber-jvm-scala](https://github.com/cucumber/cucumber-jvm-scala)
4441

4542
To start an IDE with the plugin installed in the example project, run `runIDE` task. Import the whole project
4643
as gradle project in the sandbox-ide. Wait for indexing to finish.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ lazy val `cucumber-scala` = project
3232
ThisBuild / intellijPluginName := "intellij-cucumber-scala",
3333
ThisBuild / intellijBuild := "243.21565.193",
3434
ThisBuild / intellijPlatform := IntelliJPlatform.IdeaCommunity,
35-
Compile / javacOptions ++= "--release" :: "17" :: Nil,
35+
Compile / javacOptions ++= "--release" :: "21" :: Nil,
3636
intellijPlugins ++= Seq(
3737
"org.intellij.scala:2024.3.18".toPlugin,
3838
"gherkin:243.21565.122".toPlugin

0 commit comments

Comments
 (0)