mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
build.gradle.kts: fixed setting group
and version
with values returned by Provider
This commit is contained in:
parent
c923c3ee22
commit
04408e1136
@ -19,8 +19,8 @@ plugins {
|
||||
id("org.jetbrains.kotlinx.kover") version "0.6.1"
|
||||
}
|
||||
|
||||
group = properties("pluginGroup")
|
||||
version = properties("pluginVersion")
|
||||
group = properties("pluginGroup").get()
|
||||
version = properties("pluginVersion").get()
|
||||
|
||||
// Configure project's dependencies
|
||||
repositories {
|
||||
|
Loading…
Reference in New Issue
Block a user