Skip to content

Commit

Permalink
[2.0.x] Add support for IJ 2021.1 (#961)
Browse files Browse the repository at this point in the history
Co-authored-by: shahryar <shahryar@cafebazaar.ir>
  • Loading branch information
sh-soltanpour and shahryar committed Apr 4, 2021
1 parent 4078fcd commit f660923
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion spek-ide-plugin-intellij-idea/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,17 @@ val buildMatrix = mapOf(
"IJ183",
ij.VersionRange("203.1", "203.*"),
arrayOf("java", "org.jetbrains.kotlin:1.4.0-release-IJ2020.2-1")
),
"IJ211" to ij.BuildConfig(
"211-EAP-SNAPSHOT",
"IJ2021.1",
"IJ183",
ij.VersionRange("211.1", "211.*"),
arrayOf("java", "org.jetbrains.kotlin:211-1.4.21-release-IJ6556.4")
)
)

val sdkVersion = project.properties["ij.version"] ?: "IJ203"
val sdkVersion = project.properties["ij.version"] ?: "IJ211"
val settings = checkNotNull(buildMatrix[sdkVersion])

intellij {
Expand Down

0 comments on commit f660923

Please sign in to comment.