@@ -14,8 +14,8 @@ plugins {
14
14
alias(libs.plugins.kover) // Gradle Kover Plugin
15
15
}
16
16
17
- group = properties(" pluginGroup" )
18
- version = properties(" pluginVersion" )
17
+ group = properties(" pluginGroup" ).get()
18
+ version = properties(" pluginVersion" ).get()
19
19
20
20
dependencies {
21
21
implementation(" com.jayway.jsonpath:json-path:2.9.0" )
@@ -39,12 +39,12 @@ kotlin {
39
39
40
40
// Configure Gradle IntelliJ Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
41
41
intellij {
42
- pluginName.set( properties(" pluginName" ) )
43
- version.set( properties(" platformVersion" ) )
44
- type.set( properties(" platformType" ) )
42
+ pluginName = properties(" pluginName" )
43
+ version = properties(" platformVersion" )
44
+ type = properties(" platformType" )
45
45
46
46
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
47
- plugins.set( properties(" platformPlugins" ).get() .split(' ,' ).map(String ::trim).filter(String ::isNotEmpty))
47
+ plugins = properties(" platformPlugins" ).map { it .split(' ,' ).map(String ::trim).filter(String ::isNotEmpty) }
48
48
}
49
49
50
50
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
@@ -67,9 +67,9 @@ tasks {
67
67
}
68
68
69
69
patchPluginXml {
70
- version.set( properties(" pluginVersion" ) )
71
- sinceBuild.set( properties(" pluginSinceBuild" ) )
72
- untilBuild.set( properties(" pluginUntilBuild" ) )
70
+ version = properties(" pluginVersion" )
71
+ sinceBuild = properties(" pluginSinceBuild" )
72
+ untilBuild = properties(" pluginUntilBuild" )
73
73
74
74
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
75
75
pluginDescription = providers.fileContents(layout.projectDirectory.file(" README.md" )).asText.map {
@@ -123,8 +123,7 @@ tasks {
123
123
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
124
124
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
125
125
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
126
- channels =
127
- properties(" pluginVersion" ).map { listOf (it.split(' -' ).getOrElse(1 ) { " default" }.split(' .' ).first()) }
126
+ channels = properties(" pluginVersion" ).map { listOf (it.substringAfter(' -' , " " ).substringBefore(' .' ).ifEmpty { " default" }) }
128
127
}
129
128
130
129
processResources {
0 commit comments