File tree Expand file tree Collapse file tree
src/main/kotlin/ai/codemaker/jetbrains/extension Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ import com.google.protobuf.gradle.*
22
33plugins {
44 id(" java" )
5- id(" org.jetbrains.kotlin.jvm" ) version " 1.9.23 "
6- id(" org.jetbrains.kotlin.plugin.serialization" ) version " 1.9.23 "
7- id(" org.jetbrains.intellij" ) version " 1.17.3 "
5+ id(" org.jetbrains.kotlin.jvm" ) version " 1.9.25 "
6+ id(" org.jetbrains.kotlin.plugin.serialization" ) version " 1.9.25 "
7+ id(" org.jetbrains.intellij" ) version " 1.17.4 "
88 id(" com.google.protobuf" ) version " 0.9.4"
99}
1010
@@ -46,7 +46,7 @@ tasks {
4646// Configure Gradle IntelliJ Plugin
4747// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
4848intellij {
49- version.set(" 2023.1 " )
49+ version.set(" 2024.1.7 " )
5050 type.set(" IC" ) // Target IDE Platform
5151
5252 plugins.set(listOf (/* Plugin Dependencies */ ))
@@ -64,7 +64,7 @@ tasks {
6464
6565 patchPluginXml {
6666 sinceBuild.set(" 231" )
67- untilBuild.set(" 241 .*" )
67+ untilBuild.set(" 243 .*" )
6868 }
6969
7070 signPlugin {
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.13-bin.zip
4- networkTimeout =10000
5- validateDistributionUrl =true
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
64zipStoreBase =GRADLE_USER_HOME
75zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class CorrectionSaveActionExtension : ActionOnSave() {
1616 return project.getService(Corrector ::class .java) != null
1717 }
1818
19- override fun processDocuments (project : Project , documents : Array <out Document >) {
19+ override fun processDocuments (project : Project , documents : Array <Document >) {
2020 try {
2121 val corrector = project.getService(Corrector ::class .java)
2222 val documentManager = PsiDocumentManager .getInstance(project)
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class PredictiveSaveActionExtension : ActionOnSave() {
1616 return project.getService(Predictor ::class .java) != null
1717 }
1818
19- override fun processDocuments (project : Project , documents : Array <out Document >) {
19+ override fun processDocuments (project : Project , documents : Array <Document >) {
2020 try {
2121 val predictor = project.getService(Predictor ::class .java)
2222 val documentManager = PsiDocumentManager .getInstance(project)
You can’t perform that action at this time.
0 commit comments