Skip to content

Commit 583c1dd

Browse files
Merge pull request #159 from SpineEventEngine/remove-validate-change
2 parents a1ac15e + cb44d11 commit 583c1dd

File tree

16 files changed

+276
-241
lines changed

16 files changed

+276
-241
lines changed

.idea/inspectionProfiles/Project_Default.xml

+4-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

buildSrc/src/main/kotlin/compile-protobuf.gradle.kts

-45
This file was deleted.

buildSrc/src/main/kotlin/io/spine/dependency/local/McJava.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ object McJava {
4242
/**
4343
* The version used to in the build classpath.
4444
*/
45-
const val dogfoodingVersion = "2.0.0-SNAPSHOT.252"
45+
const val dogfoodingVersion = "2.0.0-SNAPSHOT.254"
4646

4747
/**
4848
* The version to be used for integration tests.
4949
*/
50-
const val version = "2.0.0-SNAPSHOT.252"
50+
const val version = "2.0.0-SNAPSHOT.254"
5151

5252
/**
5353
* The ID of the Gradle plugin.

buildSrc/src/main/kotlin/io/spine/dependency/local/ProtoData.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ object ProtoData {
7373
* The version of ProtoData dependencies.
7474
*/
7575
val version: String
76-
private const val fallbackVersion = "0.66.2"
76+
private const val fallbackVersion = "0.67.0"
7777

7878
/**
7979
* The distinct version of ProtoData used by other build tools.
@@ -82,7 +82,7 @@ object ProtoData {
8282
* transitional dependencies, this is the version used to build the project itself.
8383
*/
8484
val dogfoodingVersion: String
85-
private const val fallbackDfVersion = "0.66.0"
85+
private const val fallbackDfVersion = "0.67.0"
8686

8787
/**
8888
* The artifact for the ProtoData Gradle plugin.

buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt

+6-3
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,19 @@ object Validation {
3636
/**
3737
* The version of the Validation library artifacts.
3838
*/
39-
const val version = "2.0.0-SNAPSHOT.170"
39+
const val version = "2.0.0-SNAPSHOT.171"
4040

4141
const val group = "io.spine.validation"
4242
private const val prefix = "spine-validation"
4343

44-
const val runtime = "$group:$prefix-java-runtime:$version"
44+
const val runtimeModule = "$group:$prefix-java-runtime"
45+
const val runtime = "$runtimeModule:$version"
4546
const val java = "$group:$prefix-java:$version"
4647

48+
const val javaBundleModule = "$group:$prefix-java-bundle"
49+
4750
/** Obtains the artifact for the `java-bundle` artifact of the given version. */
48-
fun javaBundle(version: String) = "$group:$prefix-java-bundle:$version"
51+
fun javaBundle(version: String) = "$javaBundleModule:$version"
4952

5053
val javaBundle = javaBundle(version)
5154

0 commit comments

Comments
 (0)