Fix JVM runtime artifact coordinates#287
Merged
alexander-yevsyukov merged 9 commits intomasterfrom Apr 3, 2026
Merged
Conversation
armiol
approved these changes
Apr 3, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project snapshot version and removes a now-redundant customization that previously altered the published Maven artifactId for the jvm-runtime module.
Changes:
- Bump Validation SDK version from
2.0.0-SNAPSHOT.410to2.0.0-SNAPSHOT.411across build metadata and docs. - Remove the
afterEvaluate { publishing { ... } }block injvm-runtimethat customized the publishedartifactId. - Refresh generated dependency/license and POM reports to the new snapshot version.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| version.gradle.kts | Updates the shared validationVersion used across the Gradle build. |
| pom.xml | Updates the generated dependency summary POM to the new snapshot version. |
| jvm-runtime/build.gradle.kts | Removes custom publication logic for artifactId to rely on standard publishing configuration. |
| docs/content/docs/validation/01-getting-started/adding-to-build.md | Updates the documented plugin version to the new snapshot. |
| dependencies.md | Updates the generated dependency/license report for the new snapshot (but see comment). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.
Comments suppressed due to low confidence (1)
jvm-runtime/build.gradle.kts:76
- After removing the
afterEvaluate { publishing { ... } }customization, the importsio.spine.gradle.publish.SpinePublishingandio.spine.gradle.publish.StandardJavaPublicationHandlerare now unused in this script. Please remove them to avoid Kotlin DSL compilation warnings/errors (e.g., if the build treats warnings as errors).
}
forceSpineBase()
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
buildSrc/src/main/kotlin/io/spine/gradle/publish/PublicationHandler.kt
Outdated
Show resolved
Hide resolved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR removes the customisation of the
jvm-runtimeMaven artefact ID, which is no longer needed. The customisation block added additionalspine-prefix for the publication of the previous PR.