Upgrade Gradle Wrapper to 8.0.1

This commit is contained in:
Jakub Chrzanowski
2023-02-17 22:15:58 +01:00
committed by Jakub Chrzanowski
parent 256ae7c8f5
commit 6e12719a6b
6 changed files with 10 additions and 7 deletions

View File

@@ -40,6 +40,8 @@ intellij {
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
plugins.set(properties("platformPlugins").map { it.split(',').map(String::trim).filter(String::isNotEmpty) })
instrumentCode.set(false)
}
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
@@ -120,4 +122,8 @@ tasks {
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels.set(properties("pluginVersion").map { listOf(it.split('-').getOrElse(1) { "default" }.split('.').first()) })
}
buildSearchableOptions {
enabled = false
}
}