feat: automatic merge for multi-module projects#82
Merged
algomaster99 merged 1 commit intomainfrom Dec 22, 2025
Merged
Conversation
Member
Author
|
Doing it at packaging time is not the best idea because then the bundled jar is embedded. So classfiles like @ClassportInfo(group = "org.apache.pdfbox", version = "3.0.4", id = "org.apache.pdfbox:pdfbox-app:bundle:3.0.4", sourceProjectId = "org.apache.pdfbox:pdfbox-app:bundle:3.0.4", childIds = { "org.apache.pdfbox:pdfbox-tools:jar:3.0.4", "org.bouncycastle:bcpkix-jdk18on:jar:1.80", "org.bouncycastle:bcprov-jdk18on:jar:1.80", "commons-io:commons-io:jar:2.18.0", "org.apache.pdfbox:jbig2-imageio:jar:3.0.4" }, artefact = "pdfbox-app", isDirectDependency = false)
public interface IExitCodeExceptionMapper
{
int getExitCode(final Throwable p0);
}The group should be |
fa1a85e to
9b74d8e
Compare
9b74d8e to
fb2214c
Compare
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.
Fixes #30
We stick to the double command workflow because of #82 (comment).
There are two major changes
classport-filesis created at the directory whenmvncommand is run.-Dmaven.main.skipis required flag for packaging. This is necessary because packaging phase writes theMANIFEST.MFfile intotarget/classesdirectory which triggers a recompilation of the main class for the next submodule in the reactor phase. For a single module project, this-Dmaven.main.skipis not needed. If you do need to compile the main class, you can runmvn compileagain.