Skip to content
Merged
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
18 changes: 14 additions & 4 deletions version.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,22 @@
*
* This file is used in both module `build.gradle` scripts and in the integration tests,
* as we want to manage the versions in a single source.
*
* This version file adheres to the contract of the
* [publishing application](https://github.com/SpineEventEngine/publishing).
*
* When changing the version declarations or adding new ones, make sure to change
* the publishing application accordingly.
*/

/**
* The version of this library.
*/
val base = "1.5.28"

val SPINE_VERSION = "1.5.27"

project.extra.apply {
this["spineVersion"] = SPINE_VERSION
this["spineBaseVersion"] = SPINE_VERSION // Used by `filter-internal-javadoc.gradle`.
this["versionToPublish"] = SPINE_VERSION
this["spineVersion"] = base
this["spineBaseVersion"] = base // Used by `filter-internal-javadoc.gradle`.
this["versionToPublish"] = base
}