chore(build): trim default reactor to flight-sql-jdbc-driver chain#12
Open
mateusaubin wants to merge 1 commit into
Open
chore(build): trim default reactor to flight-sql-jdbc-driver chain#12mateusaubin wants to merge 1 commit into
mateusaubin wants to merge 1 commit into
Conversation
Default build now includes only the modules required by arrow-flight-sql-jdbc-driver (bom, format, memory, vector, adapter/jdbc, flight). The remaining upstream modules move to an opt-in `full-build` profile (`mvn -Pfull-build ...`). Cuts clean-build time by ~35% CPU (~21% wall clock). Also switches git-commit-id to native git with tag support, so builds work from git worktrees. issue: https://linear.app/iomete/issue/COM-668
There was a problem hiding this comment.
Pull request overview
This PR optimizes the default Maven reactor to focus on the arrow-flight-sql-jdbc-driver build chain, moving the remaining upstream modules into an opt-in full-build profile. It also adjusts git-commit-id-plugin to use native git with tag-based describe support to improve compatibility with git worktrees.
Changes:
- Trim the root
pom.xmldefault<modules>list to only the Flight SQL JDBC driver dependency chain, and introduce afull-buildprofile that restores the removed modules. - Remove
flight-integration-testsfrom theflightreactor and build it only via the rootfull-buildprofile. - Update
git-commit-id-pluginconfiguration to use native git and enable tag-basedgit describe.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| pom.xml | Reduces the default reactor module set, adds full-build profile modules, and updates git commit metadata generation configuration. |
| flight/pom.xml | Excludes flight-integration-tests from the default Flight reactor so it builds only under the root full-build profile. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mateusaubin
marked this pull request as ready for review
July 16, 2026 15:59
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.
Trims the default Maven reactor to only the modules required by
arrow-flight-sql-jdbc-driver(bom, format, memory, vector, adapter/jdbc, flight). Remaining upstream modules move to an opt-infull-buildprofile (mvn -Pfull-build ...).clean packageLinear: COM-668