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
53 changes: 0 additions & 53 deletions buildSrc/src/main/kotlin/compile-protobuf.gradle.kts

This file was deleted.

2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/io/spine/dependency/Dependency.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ abstract class Dependency {
/**
* The [modules] given with the [version].
*/
final val artifacts: Map<String, String> by lazy {
val artifacts: Map<String, String> by lazy {
modules.associateWith { "$it:$version" }
}

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ package io.spine.dependency.local
*/
@Suppress("ConstPropertyName", "unused")
object Base {
const val version = "2.0.0-SNAPSHOT.362"
const val versionForBuildScript = "2.0.0-SNAPSHOT.362"
const val version = "2.0.0-SNAPSHOT.364"
const val versionForBuildScript = "2.0.0-SNAPSHOT.364"
const val group = Spine.group
const val artifact = "spine-base"
const val lib = "$group:$artifact:$version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ object Compiler {
* The version of ProtoData dependencies.
*/
val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.026"
private const val fallbackVersion = "2.0.0-SNAPSHOT.028"

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

/**
* The artifact for the ProtoData Gradle plugin.
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.015"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.017"

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

/**
* The ID of the Gradle plugin.
Expand Down
40 changes: 0 additions & 40 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Text.kt

This file was deleted.

10 changes: 7 additions & 3 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/ToolBase.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ package io.spine.dependency.local
@Suppress("ConstPropertyName", "unused")
object ToolBase {
const val group = Spine.toolsGroup
const val version = "2.0.0-SNAPSHOT.361"
const val version = "2.0.0-SNAPSHOT.366"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.361"

const val lib = "$group:tool-base:$version"
const val classicCodegen = "$group:classic-codegen:$version"
Expand All @@ -48,12 +49,15 @@ object ToolBase {
const val psiJavaArtifactName = "psi-java"
const val psiJava = "$group:$psiJavaArtifactName:$version"

const val gradleRootPlugin = "$group:gradle-root-plugin:$version"
const val rootGradlePlugins = "$group:root-gradle-plugins:$version"
const val gradlePluginApi = "$group:gradle-plugin-api:$version"
const val gradlePluginApiTestFixtures = "$group:gradle-plugin-api-test-fixtures:$version"

const val jvmTools = "$group:jvm-tools:$version"
const val jvmToolPlugins = "$group:jvm-tool-all-plugins:$version"
const val jvmToolPluginDogfooding = "$group:jvm-tool-all-plugins:$dogfoodingVersion"
const val jvmToolPlugins = "$group:jvm-tool-plugins-all:$version"

const val protobufSetupPlugins = "$group:protobuf-setup-plugins:$version"

object JavadocFilter {
const val group = ToolBase.group
Expand Down
Loading