mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Gradle: fixed setting the group
and version
properties
This commit is contained in:
parent
a7867111d6
commit
13c0ba1145
@ -13,8 +13,8 @@ plugins {
|
||||
alias(libs.plugins.kover) // Gradle Kover Plugin
|
||||
}
|
||||
|
||||
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