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
16 changes: 9 additions & 7 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,14 @@ package io.spine.dependency.local
*/
@Suppress("ConstPropertyName", "unused")
object Base {
const val version = "2.0.0-SNAPSHOT.382"
const val versionForBuildScript = "2.0.0-SNAPSHOT.382"
const val version = "2.0.0-SNAPSHOT.383"
const val versionForBuildScript = "2.0.0-SNAPSHOT.383"
const val group = Spine.group
const val artifact = "spine-base"
const val lib = "$group:$artifact:$version"
const val format = "$group:spine-format:$version"
const val libForBuildScript = "$group:$artifact:$versionForBuildScript"
const val annotations = "$group:spine-annotations:$version"
private const val prefix = "spine"
const val libModule = "$prefix-base"
const val lib = "$group:$libModule:$version"
const val libForBuildScript = "$group:$libModule:$versionForBuildScript"
const val annotations = "$group:$prefix-annotations:$version"
const val environment = "$group:$prefix-environment:$version"
const val format = "$group:$prefix-format:$version"
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ object Compiler {
* The version of the Compiler dependencies.
*/
val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.034"
private const val fallbackVersion = "2.0.0-SNAPSHOT.035"

/**
* The distinct version of the Compiler used by other build tools.
Expand All @@ -79,7 +79,7 @@ object Compiler {
* transitive dependencies, this is the version used to build the project itself.
*/
val dogfoodingVersion: String
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.030"
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.035"

/**
* The artifact for the Compiler Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ object CoreJvmCompiler {
/**
* The version used to in the build classpath.
*/
const val dogfoodingVersion = "2.0.0-SNAPSHOT.035"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.040"

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

/**
* The ID of the Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
package io.spine.dependency.local

/**
* Dependencies on smaller Spine modules.
* Defines Maven groups for the Spine SDK artifacts.
*/
@Suppress("unused", "ConstPropertyName")
object Spine {
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.360"
const val version = "2.0.0-SNAPSHOT.370"

/**
* The last version of Validation compatible with ProtoData.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private const val MAVEN_PUBLISH = "maven-publish"
* the [`spinePublishing`][io.spine.gradle.publish.SpinePublishing.destinations]
* extension applied to the subproject.
*/
internal sealed class PublicationHandler(
sealed class PublicationHandler(
protected val project: Project,
protected var destinations: Set<Repository>
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import org.gradle.kotlin.dsl.create
* The Maven Publish Plugin | Publications</a>
* @see CustomPublicationHandler
*/
internal class StandardJavaPublicationHandler private constructor(
class StandardJavaPublicationHandler private constructor(
project: Project,
private val jarFlags: JarFlags,
destinations: Set<Repository>,
Expand Down