Conversation
…ta, Ktor, and Spring Boot
…t with request/response logging
…g in LogTide components
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 pull request introduces a new build convention plugin and modernizes the project's build setup, including version catalog management, dependency bundling, and publishing metadata configuration. The changes improve maintainability and scalability by centralizing dependency management, automating plugin application, and standardizing publishing metadata. Additionally, the Gradle wrapper scripts have been updated for improved compatibility and error handling.
Build system enhancements:
buildSrcmodule withbuild.gradle.ktsto enable Kotlin DSL and provide shared build logic and dependencies.libs.versions.tomlandframeworks.versions.tomlfiles for centralized version catalog management, grouping libraries and plugins for easier dependency updates and bundling. [1] [2]Libs.ktto provide convenient accessors for version catalogs in Gradle scripts.Convention plugin and project configuration:
LogtideConventionPlugininplugins/LogtideConventionPlugin.ktto automatically apply Kotlin JVM and serialization plugins, and configure standard dependencies for implementation and testing. Registered the plugin inlogtide.convention.properties. [1] [2]logtide-core/build.gradle.ktsto use the new convention plugin and dependency bundles for a cleaner build definition.gradle.propertiesfor global project settings, including JVM target, project group, and version.Publishing improvements:
helpers/Publishing.ktto standardize Maven publishing metadata, including project description, license, developer info, and SCM configuration for Maven Central publication.Gradle wrapper script updates:
gradlewandgradlew.batscripts for better POSIX and Windows compatibility, improved error handling, and updated copyright/license headers. [1] [2] [3] [4] [5]Minor code improvements:
LogTideClient.ktto usethis::class.javafor improved accuracy.