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
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,13 @@ package io.spine.dependency.build
// https://errorprone.info/
@Suppress("unused", "ConstPropertyName")
object ErrorProne {
// https://github.com/google/error-prone
private const val version = "2.36.0"
/**
* This is the last version which is compatible with Java 17.
*
* The version 2.43.0 requires JDK 21.
* https://github.com/google/error-prone/releases/tag/v2.43.0
*/
private const val version = "2.42.0"

const val group = "com.google.errorprone"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import io.spine.dependency.DependencyWithBom
@Suppress("unused")
object Jackson : DependencyWithBom() {
override val group = "com.fasterxml.jackson"
override val version = "2.22.0"
override val version = "2.22.1"

// https://github.com/FasterXML/jackson-annotations?tab=readme-ov-file#release-notes
const val annotationsVersion = "2.22"
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ package io.spine.dependency.local
*/
@Suppress("ConstPropertyName", "unused")
object Base {
const val version = "2.0.0-SNAPSHOT.423"
const val versionForBuildScript = "2.0.0-SNAPSHOT.423"
const val version = "2.0.0-SNAPSHOT.424"
const val versionForBuildScript = "2.0.0-SNAPSHOT.424"
const val group = Spine.group
private const val prefix = "spine"
const val libModule = "$prefix-base"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ object Compiler : Dependency() {
* The version of the Compiler dependencies.
*/
override val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.061"
private const val fallbackVersion = "2.0.0-SNAPSHOT.062"

/**
* The distinct version of the Compiler used by other build tools.
Expand All @@ -81,7 +81,7 @@ object Compiler : Dependency() {
* transitive dependencies, this is the version used to build the project itself.
*/
val dogfoodingVersion: String
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.061"
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.062"

/**
* The artifact for the Compiler Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ typealias CoreJava = CoreJvm
@Suppress("ConstPropertyName", "unused")
object CoreJvm {
const val group = Spine.group
const val version = "2.0.0-SNAPSHOT.420"
const val version = "2.0.0-SNAPSHOT.450"

const val coreArtifact = "spine-core"
const val clientArtifact = "spine-client"
Expand Down
Loading