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
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ package io.spine.dependency.local

// For backward compatibility.
@Suppress("unused")
@Deprecated("Use `CoreJvm` instead.", ReplaceWith("CoreJvm"))
typealias CoreJava = CoreJvm

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@

package io.spine.dependency.local

import io.spine.dependency.local.CoreJvmCompiler.dogfoodingVersion
import io.spine.dependency.local.CoreJvmCompiler.version


/**
* Dependencies on the CoreJvm Compiler artifacts.
*
Expand All @@ -46,12 +50,12 @@ object CoreJvmCompiler {
/**
* The version used to in the build classpath.
*/
const val dogfoodingVersion = "2.0.0-SNAPSHOT.040"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.042"

/**
* The version to be used for integration tests.
*/
const val version = "2.0.0-SNAPSHOT.040"
const val version = "2.0.0-SNAPSHOT.042"

/**
* The ID of the Gradle plugin.
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.375"
const val version = "2.0.0-SNAPSHOT.378"

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

const val configModule = "$group:$prefix-configuration"
const val configuration = "$configModule:$version"
const val context = "$group:$prefix-context:$version"
}
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ internal fun Project.artifacts(jarFlags: JarFlags): Set<TaskProvider<Jar>> {
/**
* Adds the source code and documentation JARs to the publication.
*/
@Suppress("unused")
fun MavenPublication.addSourceAndDocJars(project: Project) {
val tasks = mutableSetOf<TaskProvider<Jar>>()
tasks.add(project.sourcesJar())
Expand Down