Update version property in gradle.properties and remove redundant pluginVersion configuration from build.gradle.kts

This commit is contained in:
Jakub Chrzanowski
2026-04-10 22:59:45 +02:00
parent f3f8b981b0
commit d1c6d61cdf
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,8 @@
- Migrate IntelliJ Platform repository configuration to `settings.gradle.kts`
- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.14.0`
- Simplify property configuration by removing redundant `pluginGroup` reference from `build.gradle.kts` and updating `gradle.properties`.
- Update `group` property in `gradle.properties` and remove redundant `pluginGroup` configuration from `build.gradle.kts`
- Update `version` property in `gradle.properties` and remove redundant `pluginVersion` configuration from `build.gradle.kts`
### Removed

View File

@@ -10,8 +10,6 @@ plugins {
alias(libs.plugins.kover) // Gradle Kover Plugin
}
version = providers.gradleProperty("pluginVersion").get()
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
dependencies {
testImplementation(libs.junit)

View File

@@ -1,10 +1,11 @@
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
group = org.jetbrains.plugins.template
version = 2.4.1
pluginName = IntelliJ Platform Plugin Template
pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template
# SemVer format -> https://semver.org
pluginVersion = 2.4.1
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 252