Skip to content

Commit 706d389

Browse files
Merge pull request #194 from SpineEventEngine/redirect-again
Restore redirection of `KspTask`s to `$projectDir/generated`
2 parents 1706138 + b805f98 commit 706d389

15 files changed

Lines changed: 296 additions & 467 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ val grGitVersion = "4.1.1"
7575
* This version may change from the [version of Kotlin][io.spine.dependency.lib.Kotlin.version]
7676
* used by the project.
7777
*/
78-
val kotlinVersion = "2.1.10"
78+
val kotlinVersion = "2.1.20"
7979

8080
/**
8181
* The version of Guava used in `buildSrc`.

buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package io.spine.dependency.local
3333
*/
3434
@Suppress("ConstPropertyName")
3535
object Base {
36-
const val version = "2.0.0-SNAPSHOT.304"
36+
const val version = "2.0.0-SNAPSHOT.307"
3737
const val versionForBuildScript = "2.0.0-SNAPSHOT.304"
3838
const val group = Spine.group
3939
const val artifact = "spine-base"

buildSrc/src/main/kotlin/io/spine/dependency/local/BaseTypes.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package io.spine.dependency.local
3333
*/
3434
@Suppress("ConstPropertyName")
3535
object BaseTypes {
36-
const val version = "2.0.0-SNAPSHOT.126"
36+
const val version = "2.0.0-SNAPSHOT.200"
3737
const val group = Spine.group
3838
const val artifact = "spine-base-types"
3939
const val lib = "$group:$artifact:$version"

buildSrc/src/main/kotlin/io/spine/dependency/local/Change.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package io.spine.dependency.local
3333
*/
3434
@Suppress("ConstPropertyName")
3535
object Change {
36-
const val version = "2.0.0-SNAPSHOT.118"
36+
const val version = "2.0.0-SNAPSHOT.200"
3737
const val group = Spine.group
3838
const val artifact = "spine-change"
3939
const val lib = "$group:$artifact:$version"

buildSrc/src/main/kotlin/io/spine/dependency/local/McJava.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ object McJava {
4242
/**
4343
* The version used to in the build classpath.
4444
*/
45-
const val dogfoodingVersion = "2.0.0-SNAPSHOT.305"
45+
const val dogfoodingVersion = "2.0.0-SNAPSHOT.306"
4646

4747
/**
4848
* The version to be used for integration tests.
4949
*/
50-
const val version = "2.0.0-SNAPSHOT.305"
50+
const val version = "2.0.0-SNAPSHOT.306"
5151

5252
/**
5353
* The ID of the Gradle plugin.

buildSrc/src/main/kotlin/io/spine/dependency/local/ProtoData.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ object ProtoData {
7373
* The version of ProtoData dependencies.
7474
*/
7575
val version: String
76-
private const val fallbackVersion = "0.93.4"
76+
private const val fallbackVersion = "0.93.6"
7777

7878
/**
7979
* The distinct version of ProtoData used by other build tools.
@@ -82,7 +82,7 @@ object ProtoData {
8282
* transitional dependencies, this is the version used to build the project itself.
8383
*/
8484
val dogfoodingVersion: String
85-
private const val fallbackDfVersion = "0.93.4"
85+
private const val fallbackDfVersion = "0.93.6"
8686

8787
/**
8888
* The artifact for the ProtoData Gradle plugin.

buildSrc/src/main/kotlin/io/spine/dependency/local/Time.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package io.spine.dependency.local
3333
*/
3434
@Suppress("ConstPropertyName")
3535
object Time {
36-
const val version = "2.0.0-SNAPSHOT.136"
36+
const val version = "2.0.0-SNAPSHOT.200"
3737
const val group = Spine.group
3838
const val artifact = "spine-time"
3939
const val lib = "$group:$artifact:$version"

buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ object Validation {
3636
/**
3737
* The version of the Validation library artifacts.
3838
*/
39-
const val version = "2.0.0-SNAPSHOT.302"
39+
const val version = "2.0.0-SNAPSHOT.305"
4040

4141
const val group = "io.spine.validation"
4242
private const val prefix = "spine-validation"

buildSrc/src/main/kotlin/module.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ fun Module.forceConfigurations() {
176176
// Force the version to avoid the version conflict for
177177
// the `:mc-java:ProtoData` configuration.
178178
Validation.runtime,
179+
Validation.java,
179180
Validation.javaBundle,
181+
Validation.config,
180182
ProtoData.api,
181183
ProtoData.gradleApi,
182184
ProtoData.java,

0 commit comments

Comments
 (0)