File tree Expand file tree Collapse file tree
buildSrc/src/main/kotlin/io/spine Expand file tree Collapse file tree Original file line number Diff line number Diff 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" ))
3132typealias CoreJava = CoreJvm
3233
3334/* *
Original file line number Diff line number Diff line change 2626
2727package 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.
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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" )
325326fun MavenPublication.addSourceAndDocJars (project : Project ) {
326327 val tasks = mutableSetOf<TaskProvider <Jar >>()
327328 tasks.add(project.sourcesJar())
You can’t perform that action at this time.
0 commit comments