Skip to content

Commit b033f2e

Browse files
committed
Merge branch 'master' of github.com:vbmacher/intellij-cucumber-scala into development
2 parents 8ea3cc6 + 801b68f commit b033f2e

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

build.sbt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ lazy val commonSettings = Seq(
1414
"--add-exports", "java.base/jdk.internal.vm=ALL-UNNAMED",
1515
"--add-opens", "java.base/java.nio=ALL-UNNAMED",
1616
),
17-
version := "2024.3.1.1",
18-
scalaVersion := "2.13.15",
17+
version := "2025.1",
18+
scalaVersion := "2.13.16",
1919
libraryDependencies ++= Seq(
2020
"junit" % "junit" % "4.13.2" % Test,
21-
"io.cucumber" %% "cucumber-scala" % "8.25.1",
22-
"io.cucumber" % "cucumber-junit" % "7.20.1" % Test,
21+
"io.cucumber" %% "cucumber-scala" % "8.27.0",
22+
"io.cucumber" % "cucumber-junit" % "7.22.0" % Test,
2323
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
24-
"org.scalatestplus" %% "junit-4-13" % "3.2.19.0" % Test,
24+
"org.scalatestplus" %% "junit-4-13" % "3.2.19.1" % Test,
2525
"org.opentest4j" % "opentest4j" % "1.3.0" % Test
2626
)
2727
)
@@ -31,12 +31,12 @@ lazy val `cucumber-scala` = project
3131
.settings(
3232
commonSettings,
3333
ThisBuild / intellijPluginName := "intellij-cucumber-scala",
34-
ThisBuild / intellijBuild := "243.22562.218",
34+
ThisBuild / intellijBuild := "251.23774.435",
3535
ThisBuild / intellijPlatform := IntelliJPlatform.IdeaCommunity,
3636
Compile / javacOptions ++= "--release" :: "21" :: Nil,
3737
intellijPlugins ++= Seq(
38-
"org.intellij.scala:2024.3.23".toPlugin,
39-
"gherkin:243.22562.13".toPlugin
38+
"org.intellij.scala:2025.1.20".toPlugin,
39+
"gherkin:251.23774.318".toPlugin
4040
),
4141
intellijVMOptions := intellijVMOptions.value.copy(
4242
defaultOptions = Seq(

cucumber-scala/src/main/resources/META-INF/plugin.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@
1919

2020
<change-notes><![CDATA[
2121
<ul>
22+
<li>2025.1: Release for IntelliJ 2025.1 (build 251.23774.435)
23+
<ol>
24+
<li>Scala version 2.13.16</li>
25+
<li>Scala plugin 2025.1.20</li>
26+
<li>Gherkin plugin 251.23774.318</li>
27+
<li>cucumber-scala 8.27.0</li>
28+
<li>cucumber-junit 7.22.0</li>
29+
<li>junit-4-13 3.2.19.1</li>
30+
</ol>
31+
</li>
2232
<li>2024.3.1.1: Release for IntelliJ 2024.3.1.1 (build 243.22562.218)
2333
<ol>
2434
<li>Scala plugin 2024.3.23</li>

0 commit comments

Comments
 (0)