Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

fun properties(key: String): String = providers.gradleProperty(key).get()
fun environment(key: String): Provider<String?> = providers.environmentVariable(key)
fun properties(key: String) = providers.gradleProperty(key).get()
fun environment(key: String) = providers.environmentVariable(key)

plugins {
id("java")
Expand Down
4 changes: 2 additions & 2 deletions detekt-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ formatting:
FunctionName:
active: true
FunctionSignature:
active: true
active: false
maxLineLength: 140
indentSize: 2
Indentation:
Expand Down Expand Up @@ -293,4 +293,4 @@ potential-bugs:
NullableToStringCall:
active: true
PropertyUsedBeforeDeclaration:
active: true
active: true
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gradleVersion=8.9.0
gradleVersion=9.0
javaVersion=21
kotlin.incremental.useClasspathSnapshot=false
org.gradle.jvmargs=-Xmx9g
Expand All @@ -7,5 +7,5 @@ platformVersion=LATEST-EAP-SNAPSHOT
pluginGroup=EditorGroups
pluginName=Editor Groups
pluginSinceBuild=253
pluginUntilBuild=263.*
pluginUntilBuild=271.*
pluginVersion=4.1.1
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[versions]
# libraries
annotations = "24.0.1"
annotations = "26.0.2-1"

# plugins
kotlin = "2.1.20"
changelog = "2.2.0"
gradleIntelliJPlugin = "2.6.0"
detekt = "1.23.6"
ktlint = "12.1.0"
kotlin = "2.3.0"
changelog = "2.4.0"
gradleIntelliJPlugin = "2.10.5"
detekt = "1.23.8"
ktlint = "13.1.0"

[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
Expand All @@ -17,4 +17,4 @@ changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
gradleIntelliJPlugin = { id = "org.jetbrains.intellij.platform", version.ref = "gradleIntelliJPlugin" }
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
12 changes: 7 additions & 5 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading