-
Notifications
You must be signed in to change notification settings - Fork 26
refactor: common maven goal wrappers #820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
wraps common goals with their preferred options: - `libexec/build-javadocs.sh`: for building docs - `libexec/dependency-analysis.sh`: for analyzing dependencies - `libexec/dependency-tree.sh`: for printing dependency DAGs purpose: - reduce DRY violations between CI configs and `build-coatjava.sh` - allow developers to run these goals, by calling `libexec/` scripts manually
baltzell
approved these changes
Sep 9, 2025
baltzell
added a commit
that referenced
this pull request
Sep 11, 2025
feat: test wrapper feat: write charge comparison table feat: initial correction implementation fix: need protected default constructor for inheritance refactor: separate `readSequence` event loop to a protected method so that a derived class can use it fix: cleanup, since downsampling moved downstream feat: store event number feat: QADB binning classes feat: some example code feat: general `coatjava` script fix: start convincing this stuff to work fix: fencepost error, and missing event number feat: handle charge feat: get charge extrema feat: support RG-D charge override feat: sugar refactor: organize methods fix: spelling fix: +1 fix: if on boundary take earlier bin to be consistent with the current QADB convention fix: remove bin/coatjava fix: cleanup diff doc: cleanup feat: validate scaler ordering fix: docstrings refactor: DeMorgan law build(deps): bump com.github.spotbugs:spotbugs-maven-plugin Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.9.3.2 to 4.9.4.2. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](spotbugs/spotbugs-maven-plugin@spotbugs-maven-plugin-4.9.3.2...spotbugs-maven-plugin-4.9.4.2) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-version: 4.9.4.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> remove unused variable add rollover fix (example) prepare to test, find a rollover nothing nothing add comment use CLAS12DIR debug better printout add toString really fix clock rollover relax cleanup add fix clock rollover option bugfix feat: instantiation without `data` creation backmerge 'origin/development' refactor: common maven goal wrappers (#820) refactor: cleanup backmerge 'origin/development'
baltzell
added a commit
that referenced
this pull request
Sep 11, 2025
feat: test wrapper feat: write charge comparison table feat: initial correction implementation fix: need protected default constructor for inheritance refactor: separate `readSequence` event loop to a protected method so that a derived class can use it fix: cleanup, since downsampling moved downstream feat: store event number feat: QADB binning classes feat: some example code feat: general `coatjava` script fix: start convincing this stuff to work fix: fencepost error, and missing event number feat: handle charge feat: get charge extrema feat: support RG-D charge override feat: sugar refactor: organize methods fix: spelling fix: +1 fix: if on boundary take earlier bin to be consistent with the current QADB convention fix: remove bin/coatjava fix: cleanup diff doc: cleanup feat: validate scaler ordering fix: docstrings refactor: DeMorgan law build(deps): bump com.github.spotbugs:spotbugs-maven-plugin Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.9.3.2 to 4.9.4.2. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](spotbugs/spotbugs-maven-plugin@spotbugs-maven-plugin-4.9.3.2...spotbugs-maven-plugin-4.9.4.2) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-version: 4.9.4.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> remove unused variable add rollover fix (example) prepare to test, find a rollover nothing nothing add comment use CLAS12DIR debug better printout add toString really fix clock rollover relax cleanup add fix clock rollover option bugfix feat: instantiation without `data` creation backmerge 'origin/development' refactor: common maven goal wrappers (#820) refactor: cleanup backmerge 'origin/development'
c-dilks
added a commit
that referenced
this pull request
Sep 15, 2025
tongtongcao
pushed a commit
that referenced
this pull request
Sep 22, 2025
tongtongcao
pushed a commit
that referenced
this pull request
Nov 18, 2025
tongtongcao
pushed a commit
that referenced
this pull request
Nov 21, 2025
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.
wraps common goals with their preferred options:
libexec/build-javadocs.sh: for building docslibexec/dependency-analysis.sh: for analyzing dependencieslibexec/dependency-tree.sh: for printing dependency DAGspurpose:
build-coatjava.shlibexec/scripts manually