Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading