Skip to content

Commit 08f8cd9

Browse files
Update config
1 parent aed4b10 commit 08f8cd9

File tree

9 files changed

+13
-11
lines changed

9 files changed

+13
-11
lines changed

buildSrc/src/main/kotlin/BuildExtensions.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,8 @@ fun Project.configureTaskDependencies() {
227227
"compileTestFixturesKotlin".dependOn("kspTestFixturesKotlin")
228228
"javadocJar".dependOn(dokkaGeneratePublicationJavadoc)
229229
"htmlDocsJar".dependOn(dokkaGenerate)
230+
231+
"kspTestKotlin".dependOn("launchTestSpineCompiler")
230232
}
231233
}
232234

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.212"
36+
const val version = "2.0.0-SNAPSHOT.222"
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.200"
36+
const val version = "2.0.0-SNAPSHOT.205"
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/Compiler.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ object Compiler : Dependency() {
7272
* The version of the Compiler dependencies.
7373
*/
7474
override val version: String
75-
private const val fallbackVersion = "2.0.0-SNAPSHOT.036"
75+
private const val fallbackVersion = "2.0.0-SNAPSHOT.037"
7676

7777
/**
7878
* The distinct version of the Compiler used by other build tools.
@@ -81,7 +81,7 @@ object Compiler : Dependency() {
8181
* transitive dependencies, this is the version used to build the project itself.
8282
*/
8383
val dogfoodingVersion: String
84-
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.036"
84+
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.037"
8585

8686
/**
8787
* The artifact for the Compiler Gradle plugin.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ typealias CoreJava = CoreJvm
3939
@Suppress("ConstPropertyName", "unused")
4040
object CoreJvm {
4141
const val group = Spine.group
42-
const val version = "2.0.0-SNAPSHOT.365"
42+
const val version = "2.0.0-SNAPSHOT.370"
4343

4444
const val coreArtifact = "spine-core"
4545
const val clientArtifact = "spine-client"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ package io.spine.dependency.local
2929
/**
3030
* Dependencies on the CoreJvm Compiler artifacts.
3131
*
32-
* See [mc-java](https://github.com/SpineEventEngine/core-jvm-compiler).
32+
* See [CoreJvm Compiler](https://github.com/SpineEventEngine/core-jvm-compiler).
3333
*/
3434
@Suppress(
3535
"MemberVisibilityCanBePrivate" /* `pluginLib()` is used by subprojects. */,
@@ -46,12 +46,12 @@ object CoreJvmCompiler {
4646
/**
4747
* The version used to in the build classpath.
4848
*/
49-
const val dogfoodingVersion = "2.0.0-SNAPSHOT.042"
49+
const val dogfoodingVersion = "2.0.0-SNAPSHOT.050"
5050

5151
/**
5252
* The version to be used for integration tests.
5353
*/
54-
const val version = "2.0.0-SNAPSHOT.042"
54+
const val version = "2.0.0-SNAPSHOT.050"
5555

5656
/**
5757
* The ID of the 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.220"
36+
const val version = "2.0.0-SNAPSHOT.230"
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.383"
39+
const val version = "2.0.0-SNAPSHOT.391"
4040

4141
/**
4242
* The last version of Validation compatible with ProtoData.

0 commit comments

Comments
 (0)