Bump Base, Logging, and ToolBase#15
Merged
alexander-yevsyukov merged 15 commits intomasterfrom Sep 18, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates dependencies on Base, Logging, and ToolBase to the latest published versions and bumps the project version from 0.11.0 to 0.12.0.
Key changes:
- Updated Base from version 2.0.0-SNAPSHOT.322 to 2.0.0-SNAPSHOT.360
- Updated Logging from version 2.0.0-SNAPSHOT.242 to 2.0.0-SNAPSHOT.411
- Updated ToolBase from version 2.0.0-SNAPSHOT.335 to 2.0.0-SNAPSHOT.350
- Extracted
Module.forceConfiguration()function to separate file for use in gradle-plugin module
Reviewed Changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| version.gradle.kts | Updates project version to 0.12.0 |
| pom.xml | Updates project and dependency versions, adds new jvm-tools dependency |
| gradle-plugin/src/main/kotlin/io/spine/tools/prototap/gradle/Plugin.kt | Updates import path for Version class |
| gradle-plugin/build.gradle.kts | Adds forceConfigurations() call and jvm-tools dependency |
| dependencies.md | Auto-generated dependency report with updated versions and timestamps |
| buildSrc/src/main/kotlin/module.gradle.kts | Removes forceConfigurations() function (moved to separate file) |
| buildSrc/src/main/kotlin/io/spine/dependency/local/ToolBase.kt | Updates ToolBase versions and artifact names |
| buildSrc/src/main/kotlin/io/spine/dependency/local/Logging.kt | Updates Logging version |
| buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt | Updates Base version and adds new artifact constants |
| buildSrc/src/main/kotlin/ModuleExts.kt | New file containing extracted forceConfigurations() function |
Files not reviewed (1)
- .idea/kotlinc.xml: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
armiol
approved these changes
Sep 18, 2025
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 updates dependencies on Base, Logging, and ToolBase to the latest published versions.
Build changes
Module.forceConfiguration()function was extracted into a separate file to allow calling it fromgradle-pluginmodule build. The extraction as needed because the module does not apply themodulescript plugin in which the function was previously declared.