Add maven-assembly-plugin, maven-source-plugin, and dokka-maven-plugi…#471
Merged
ag-ramachandran merged 1 commit intomasterfrom Apr 7, 2026
Merged
Conversation
ag-ramachandran
suggested changes
Apr 2, 2026
…n to ingest-v2 for complete release artifacts - maven-assembly-plugin: produces jar-with-dependencies (fat jar) - maven-source-plugin: produces -sources.jar - dokka-maven-plugin (v1.9.20): produces -javadoc.jar (required for Kotlin; maven-javadoc-plugin does not work for pure Kotlin modules as it only processes .java files and silently produces no output) - release.yml: added jar-with-dependencies for ingest-v2 in GitHub Release
05f212f to
e8bc305
Compare
ag-ramachandran
approved these changes
Apr 7, 2026
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 enhances the build and release process for the
ingest-v2module by introducing new Maven plugins and updating the release workflow to generate and publish additional artifact types, including a "jar-with-dependencies," source jar, and Javadoc jar. These changes improve artifact distribution and documentation.Build and artifact generation improvements:
maven-assembly-plugintoingest-v2/pom.xmlto automatically create a "jar-with-dependencies" during the package phase, enabling easier distribution of a standalone jar with all dependencies included.maven-source-pluginto generate and attach a sources jar during the verify phase, improving source code availability for consumers.dokka-maven-pluginfor generating and attaching a Javadoc jar using Dokka, enhancing documentation for Kotlin code.dokka.versionproperty for managing the Dokka plugin version.Release workflow updates:
.github/workflows/release.ymlto upload the new "jar-with-dependencies" artifact forkusto-ingest-v2as part of the release process.