Skip to content

Commit d4eb2bc

Browse files
committed
Initial support for IntelliJ 2024.1 (broken, EAP is not public yet)
1 parent 6db6fc0 commit d4eb2bc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CI
33
on:
44
push:
55
branches:
6-
- idea223.x
76
- idea231.x
87
- idea232.x
98
- idea233.x
9+
- idea241.x
1010
pull_request:
1111

1212
jobs:

build.sbt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import org.jetbrains.sbtidea.{AutoJbr, JbrPlatform}
22

33
lazy val scala213 = "2.13.10"
4-
lazy val scalaPluginVersion = "2023.3.19"
5-
lazy val minorVersion = "1"
4+
lazy val scalaPluginVersion = "2024.1.259:Nightly"
5+
lazy val minorVersion = "0"
66
lazy val buildVersion = sys.env.getOrElse("ZIO_INTELLIJ_BUILD_NUMBER", minorVersion)
7-
lazy val pluginVersion = s"2023.3.31.$buildVersion"
7+
lazy val pluginVersion = s"2024.1.32.$buildVersion"
88

99
ThisBuild / intellijPluginName := "zio-intellij"
10-
ThisBuild / intellijBuild := "233"
10+
ThisBuild / intellijBuild := "241.6658"
1111
ThisBuild / jbrInfo := AutoJbr(explicitPlatform = Some(JbrPlatform.osx_aarch64))
1212

1313
Global / intellijAttachSources := true
@@ -41,7 +41,7 @@ lazy val root =
4141
s"""<![CDATA[
4242
<b>What's new?</b>
4343
<ul>
44-
<li>Added: "Click to see difference" for non-trivial test assertion failures.</li>
44+
<li>IntelliJ IDEA 2024.1 support!</li>
4545
</ul>
4646
]]>"""
4747
)

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.20.3")
1+
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.21.1")
22
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<change-notes>replaced-by-build</change-notes>
2121

22-
<idea-version since-build="233.11799" until-build="233.*"/>
22+
<idea-version since-build="241.6658" until-build="241.*"/>
2323

2424
<depends>org.intellij.scala</depends>
2525
<depends>com.intellij.modules.java</depends>

0 commit comments

Comments
 (0)