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
6 changes: 3 additions & 3 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ val grGitVersion = "4.1.1"
* This version may change from the [version of Kotlin][io.spine.dependency.lib.Kotlin.version]
* used by the project.
*/
val kotlinEmbeddedVersion = "2.1.21"
val kotlinEmbeddedVersion = "2.2.20"

/**
* The version of Guava used in `buildSrc`.
Expand Down Expand Up @@ -144,7 +144,7 @@ val koverVersion = "0.9.1"
*
* @see <a href="https://github.com/GradleUp/shadow">Shadow Plugin releases</a>
*/
val shadowVersion = "8.3.6"
val shadowVersion = "9.2.2"

configurations.all {
resolutionStrategy {
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.361"
const val versionForBuildScript = "2.0.0-SNAPSHOT.361"
const val version = "2.0.0-SNAPSHOT.362"
const val versionForBuildScript = "2.0.0-SNAPSHOT.362"
const val group = Spine.group
const val artifact = "spine-base"
const val lib = "$group:$artifact:$version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ object Compiler {
* The version of ProtoData dependencies.
*/
val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.024"
private const val fallbackVersion = "2.0.0-SNAPSHOT.026"

/**
* The distinct version of ProtoData used by other build tools.
Expand All @@ -79,7 +79,7 @@ object Compiler {
* transitional dependencies, this is the version used to build the project itself.
*/
val dogfoodingVersion: String
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.024"
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.026"

/**
* The artifact for the ProtoData Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ package io.spine.dependency.local
*/
@Suppress("ConstPropertyName")
object TestLib {
const val version = "2.0.0-SNAPSHOT.210"
const val version = "2.0.0-SNAPSHOT.211"
const val group = Spine.toolsGroup
const val artifact = "spine-testlib"
const val lib = "$group:$artifact:$version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ object ToolBase {
const val intellijPlatformJava = "$group:intellij-platform-java:$version"

const val psi = "$group:psi:$version"
const val psiJava = "$group:psi-java:$version"
const val psiJavaArtifactName = "psi-java"
const val psiJava = "$group:$psiJavaArtifactName:$version"

const val gradleRootPlugin = "$group:gradle-root-plugin:$version"
const val gradlePluginApi = "$group:gradle-plugin-api:$version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object Validation {
/**
* The version of the Validation library artifacts.
*/
const val version = "2.0.0-SNAPSHOT.351"
const val version = "2.0.0-SNAPSHOT.352"

/**
* The last version of Validation compatible with ProtoData.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
*/
fun ShadowJar.handleMergingServiceFiles() {
ServiceFiles.all.forEach {
mergeServiceFiles(it)
append(it)
}
}

Expand Down