Skip to content

Commit 2c3a3e1

Browse files
author
Michel Davit
committed
Add comments
1 parent fffba0c commit 2c3a3e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

+3-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ThisBuild / githubWorkflowPublish := Seq(
5050
// idea settings
5151
ThisBuild / intellijPluginName := "scio-idea"
5252
ThisBuild / intellijPlatform := IntelliJPlatform.IdeaCommunity
53-
ThisBuild / intellijBuild := "2022.3.1"
53+
ThisBuild / intellijBuild := "2022.3.1" // 1st java 17 version
5454

5555
lazy val scioIdeaPlugin: Project = project
5656
.in(file("."))
@@ -63,7 +63,8 @@ lazy val scioIdeaPlugin: Project = project
6363
intellijPlugins += "org.intellij.scala".toPlugin,
6464
patchPluginXml := pluginXmlOptions { xml =>
6565
xml.version = version.value
66-
xml.sinceBuild = "223"
66+
// https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#platformVersions
67+
xml.sinceBuild = "223" // for 2022.3
6768
},
6869
// verify against latest IntelliJ IDEA Community
6970
pluginVerifierOptions := pluginVerifierOptions.value.copy(

0 commit comments

Comments
 (0)