Skip to content

Commit

Permalink
Merge pull request #88 from NipunaRanasinghe/master
Browse files Browse the repository at this point in the history
Enable plugin support for IntelliJ 2024.3.x versions
  • Loading branch information
NipunaRanasinghe authored Jan 25, 2025
2 parents 0d3f905 + 7e650b8 commit f864c67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ version = project.version
dependencies {
implementation group: "com.github.ballerina-platform", name: "lsp4intellij", version: "${lsp4IntellijVersion}"
testImplementation group: "org.opentest4j", name: "opentest4j", version: "${opentest4jVersion}"
testImplementation group: "junit", name: "junit", version: "${junitVersion}"
}

intellij {
Expand All @@ -50,7 +51,7 @@ tasks.withType(JavaCompile) {

patchPluginXml {
sinceBuild = project.sinceBuild
sinceBuild = provider { null }
untilBuild = provider { null }
}

signPlugin {
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ version=2.0.0-SNAPSHOT
intellijPluginVersion=1.17.3
lsp4IntellijVersion=0.96.2
opentest4jVersion=1.2.0
junitVersion=4.13.2
checkStyleVersion=8.36
downloadPluginVersion=5.4.0
spotbugsPluginVersion=5.0.14
releasePluginVersion=2.8.0

# IntelliJ IDE Configuration
ideaVersion=2024.2
ideaVersion=2024.3

# Java Configuration
sourceCompatibility=17
Expand Down

0 comments on commit f864c67

Please sign in to comment.