revise mavenskeleton + try dependency check - #9601
Open
ebarboni wants to merge 1 commit into
Open
Conversation
mbien
reviewed
Sep 5, 2026
| - name: Check Dependencies | ||
| run: | | ||
| ant -quiet bootstrap | ||
| ant -quiet verify-libs-and-license |
| run: | | ||
| ant -quiet bootstrap | ||
| ant -quiet verify-libs-and-license | ||
| cd nbbuild/build/mavenpoms/;mvn eu.maveniverse.maven.plugins:toolbox:0.15.17:dependency-versions |
Member
There was a problem hiding this comment.
nit: split line
cd nbbuild/build/mavenpoms/
mvn -B eu.maveniverse.maven.plugins:toolbox:0.15.17:libyearbtw, how about running libyear instead of dependency-versions?
difference: it will print less (won't show "up to date" lines) and it calculates age too, which can be useful for prioritization.
This is the most concice output I could come up with:
mvn -B\
-Dorg.slf4j.simpleLogger.defaultLogLevel=warn\
-Dorg.slf4j.simpleLogger.log.eu.maveniverse.maven=info\
-DupToDate=true\
eu.maveniverse.maven.plugins:0.15.17:toolbox:libyeargenerates about 1200 lines.
I am not sure what the github limit is. Would be cool if we could post it there like the other action.
echo "<pre>" >> $GITHUB_STEP_SUMMARY
<command> | tee -a $GITHUB_STEP_SUMMARY
echo "</pre>" >> $GITHUB_STEP_SUMMARY
Member
There was a problem hiding this comment.
oh nice. apparently github limits at 1MB - this will fit without problems.
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.
Attempt to make the maven skeleton a bit more hierachical to match cluster and module name.
ant verify-libs-and-licenses is used to make skeleton on nbbuild/build/mavenpoms
mvn eu.maveniverse.maven.plugins:toolbox:0.15.17:dependency-versions can be launched on the folder root or in subfolder cluster to reduce scope.