Skip to content

Commit

Permalink
Fix plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt committed Oct 7, 2024
1 parent 287f3b0 commit c349247
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,16 @@ val pluginGroup: String by project
// `pluginName_` variable ends with `_` because of the collision with Kotlin magic getter in the `intellij` closure.
// Read more about the issue: https://github.com/JetBrains/intellij-platform-plugin-template/issues/29
val pluginName_: String by project
val pluginVersion: String = pluginVersion(major = "2", minor = "8", patch = "1")
val pluginVersion: String = pluginVersion(major = "2", minor = "7", patch = "0")
val supportedSinceIdeVersion: String by project
val supportedUntilIdeVersion: String by project
val pluginDescriptionFile: String by project
val pluginChangeNotesFile: String by project

val platformVersion: String by project
val packageVersion: String by project

group = pluginGroup
version = packageVersion
version = pluginVersion

logger.lifecycle("Building Amazon Ion $pluginVersion")

Expand Down Expand Up @@ -74,7 +73,7 @@ dependencies {
intellijPlatform {
pluginConfiguration {
name.set(pluginName_)
version.set(packageVersion)
version.set(pluginVersion)
description.set(readResource(pluginDescriptionFile))
changeNotes.set(readResource(pluginChangeNotesFile))

Expand Down
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ supportedSinceIdeVersion = 231.1
# might not even exist by then.
supportedUntilIdeVersion = 993.*

packageVersion = 2.0

# Opt-out flag for bundling Kotlin standard library.
# See https://kotlinlang.org/docs/reference/using-gradle.html#dependency-on-the-standard-library for details.
kotlin.stdlib.default.dependency = false

0 comments on commit c349247

Please sign in to comment.