Skip to content

Commit

Permalink
chore: update Kotlin version to 1.9.10 and Gradle distribution to 7.6
Browse files Browse the repository at this point in the history
Update Kotlin version to 1.9.10 and Gradle distribution to 7.6 for compatibility and performance improvements.
  • Loading branch information
phodal committed May 31, 2024
1 parent 8dea132 commit a57ac8f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
9 changes: 6 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ allprojects {
}

intellij {
version = prop("platformVersion")
type = prop("platformType")
version.set(prop("platformVersion"))
type.set(prop("platformType"))
instrumentCode.set(false)
sandboxDir.set("${layout.projectDirectory}/build/idea-sandbox-$ideaPlatformVersion")
}
Expand Down Expand Up @@ -78,6 +78,9 @@ allprojects {
buildSearchableOptions { enabled = false }
}

dependencies {
compileOnly(kotlin("stdlib-jdk8"))
}
}

project(":core") {
Expand All @@ -91,7 +94,7 @@ project(":language") {
}

intellij {
version = prop("platformVersion")
version.set(prop("platformVersion"))
plugins.set((listOf<String>() + "org.intellij.plugins.markdown" + "com.jetbrains.sh" + "Git4Idea"))
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# libraries

# plugins
kotlin = "2.0.0"
kotlin = "1.9.10"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.17.2"
qodana = "2024.1.5"
Expand Down
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit a57ac8f

Please sign in to comment.