Skip to content

Commit ec507ca

Browse files
authored
Merge pull request #139 from vbmacher/issue-138
Fix plugin.xml
2 parents a744f45 + e452d07 commit ec507ca

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.jvmopts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Dfile.encoding=UTF8

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ lazy val commonSettings = Seq(
99
"--add-opens", "java.desktop/java.awt=ALL-UNNAMED",
1010
"--add-opens", "java.desktop/java.awt.event=ALL-UNNAMED",
1111
"--add-opens", "java.desktop/javax.swing=ALL-UNNAMED",
12+
"--add-opens", "java.desktop/javax.swing.text=ALL-UNNAMED",
1213
"--add-opens", "java.desktop/sun.font=ALL-UNNAMED",
1314
"--add-exports", "java.base/jdk.internal.vm=ALL-UNNAMED",
1415
),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<name>Cucumber for Scala</name>
77
<category>Test Tools</category>
88
<version>2024.2.1</version>
9-
<idea-version since-build="241.14494" until-build="241.*"/>
9+
<idea-version since-build="242.20224" until-build="242.*"/>
1010
<vendor email="[email protected]" url="https://github.com/vbmacher">Peter Jakubčo</vendor>
1111

1212
<description><![CDATA[

cucumber-scala/src/test/scala/com/github/vbmacher/intellij/cucumber/scala/ScCucumberSpecBase.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.github.vbmacher.intellij.cucumber.scala
22

3-
import java.io.File
43
import com.intellij.codeInsight.daemon.LineMarkerInfo
54
import com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.getLineMarkers
65
import com.intellij.psi._
@@ -10,6 +9,7 @@ import org.apache.log4j.Logger
109
import org.scalatest.matchers.should.Matchers
1110
import org.scalatestplus.junit.JUnitSuiteLike
1211

12+
import java.io.File
1313
import scala.jdk.CollectionConverters._
1414

1515
abstract class ScCucumberSpecBase extends BasePlatformTestCase with Matchers with JUnitSuiteLike {

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.18.3")
1+
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.20.1")

0 commit comments

Comments
 (0)