Skip to content

Commit 9a4fbe2

Browse files
Merge pull request #619 from SpineEventEngine/bump-versions-etc
Update `buildSrc` from CoreJvm Compiler
2 parents d6b0ded + e97c4a0 commit 9a4fbe2

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ package io.spine.dependency.local
2828

2929
// For backward compatibility.
3030
@Suppress("unused")
31+
@Deprecated("Use `CoreJvm` instead.", ReplaceWith("CoreJvm"))
3132
typealias CoreJava = CoreJvm
3233

3334
/**

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626

2727
package io.spine.dependency.local
2828

29+
import io.spine.dependency.local.CoreJvmCompiler.dogfoodingVersion
30+
import io.spine.dependency.local.CoreJvmCompiler.version
31+
32+
2933
/**
3034
* Dependencies on the CoreJvm Compiler artifacts.
3135
*
@@ -46,12 +50,12 @@ object CoreJvmCompiler {
4650
/**
4751
* The version used to in the build classpath.
4852
*/
49-
const val dogfoodingVersion = "2.0.0-SNAPSHOT.040"
53+
const val dogfoodingVersion = "2.0.0-SNAPSHOT.042"
5054

5155
/**
5256
* The version to be used for integration tests.
5357
*/
54-
const val version = "2.0.0-SNAPSHOT.040"
58+
const val version = "2.0.0-SNAPSHOT.042"
5559

5660
/**
5761
* The ID of the Gradle plugin.

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

Lines changed: 2 additions & 2 deletions
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.375"
39+
const val version = "2.0.0-SNAPSHOT.378"
4040

4141
/**
4242
* The last version of Validation compatible with ProtoData.
@@ -65,5 +65,5 @@ object Validation {
6565
const val model = "$group:$prefix-model:$version"
6666

6767
const val configModule = "$group:$prefix-configuration"
68-
const val configuration = "$configModule:$version"
68+
const val context = "$group:$prefix-context:$version"
6969
}

buildSrc/src/main/kotlin/io/spine/gradle/publish/PublishingExts.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ internal fun Project.artifacts(jarFlags: JarFlags): Set<TaskProvider<Jar>> {
322322
/**
323323
* Adds the source code and documentation JARs to the publication.
324324
*/
325+
@Suppress("unused")
325326
fun MavenPublication.addSourceAndDocJars(project: Project) {
326327
val tasks = mutableSetOf<TaskProvider<Jar>>()
327328
tasks.add(project.sourcesJar())

0 commit comments

Comments
 (0)