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 @@ -27,6 +27,11 @@
package io.spine.dependency.local

import io.spine.dependency.Dependency
import io.spine.dependency.local.Compiler.DF_VERSION_ENV
import io.spine.dependency.local.Compiler.VERSION_ENV
import io.spine.dependency.local.Compiler.dogfoodingVersion
import io.spine.dependency.local.Compiler.pluginLib
import io.spine.dependency.local.Compiler.version

/**
* Dependencies on the Spine Compiler modules.
Expand Down Expand Up @@ -72,7 +77,7 @@ object Compiler : Dependency() {
* The version of the Compiler dependencies.
*/
override val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.039"
private const val fallbackVersion = "2.0.0-SNAPSHOT.040"

/**
* The distinct version of the Compiler used by other build tools.
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.054"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.055"

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

/**
* 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.402"
const val version = "2.0.0-SNAPSHOT.405"

/**
* The last version of Validation compatible with ProtoData.
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/io/spine/dependency/test/JUnit.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import io.spine.dependency.DependencyWithBom
@Suppress("unused", "ConstPropertyName")
object JUnit : DependencyWithBom() {

override val version = "6.0.0"
override val version = "6.0.3"
override val group: String = "org.junit"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
package io.spine.gradle.kotlin

import org.gradle.jvm.toolchain.JavaLanguageVersion
import org.jetbrains.kotlin.gradle.dsl.JvmDefaultMode
import org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerOptions
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompilerOptions
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
import org.jetbrains.kotlin.gradle.dsl.JvmDefaultMode

/**
* Sets [Java toolchain](https://kotlinlang.org/docs/gradle.html#gradle-java-toolchains-support)
Expand All @@ -56,7 +56,7 @@ fun KotlinJvmProjectExtension.applyJvmToolchain(version: String) =
@Suppress("unused")
fun KotlinCommonCompilerOptions.setFreeCompilerArgs() {
if (this is KotlinJvmCompilerOptions) {
jvmDefault.set(JvmDefaultMode.ENABLE)
jvmDefault.set(JvmDefaultMode.NO_COMPATIBILITY)
}
freeCompilerArgs.addAll(
listOf(
Expand Down
Loading