Skip to content

mvn: update maven plugin versions and fix build messages#399

Open
arfio wants to merge 1 commit into
eclipse-tracecompass:masterfrom
arfio:mvn-update-plugins
Open

mvn: update maven plugin versions and fix build messages#399
arfio wants to merge 1 commit into
eclipse-tracecompass:masterfrom
arfio:mvn-update-plugins

Conversation

@arfio
Copy link
Copy Markdown
Contributor

@arfio arfio commented May 21, 2026

What it does

mvn: update maven plugin versions and fix build messages
mvn: remove feature-source execution as it is now deprecated. From what I understand, this creates a source feature that bundles the code with the updateSite. We need to find another solution.

How to test

Build Trace Compass

Follow-ups

N/A

Review checklist

  • As an author, I have thoroughly tested my changes and carefully followed the instructions in this template

Summary by CodeRabbit

Release Notes

  • Chores
    • Upgraded Maven build plugin versions including Tycho, CBI plugins, RCPPT, Sonar, and JaCoCo for improved compatibility.
    • Restructured build automation configurations across documentation modules to improve organization and maintainability.
    • Streamlined source code artifact generation by eliminating redundant execution settings.

Review Change Stack

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 21, 2026

Warning

Rate limit exceeded

@arfio has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 25 minutes and 31 seconds before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 207ae64e-613d-4486-b777-e03dda6cf828

📥 Commits

Reviewing files that changed from the base of the PR and between 0d25470 and 5ec4149.

📒 Files selected for processing (8)
  • .github/workflows/ci-base.yml
  • doc/org.eclipse.tracecompass.doc.dev/pom.xml
  • doc/org.eclipse.tracecompass.doc.user/pom.xml
  • doc/org.eclipse.tracecompass.gdbtrace.doc.user/pom.xml
  • doc/org.eclipse.tracecompass.rcp.doc.user/pom.xml
  • doc/org.eclipse.tracecompass.tmf.pcap.doc.user/pom.xml
  • pom.xml
  • tmf/org.eclipse.tracecompass.tmf.ui/pom.xml
📝 Walkthrough

Walkthrough

Parent pom.xml receives version bumps for build tooling (Tycho, CBI, RCPTT, Sonar, JaCoCo) and Maven plugins. Feature-source execution is removed from tycho-source-plugin. Documentation and UI module pom.xml files standardize maven-antrun-plugin Ant task XML structure by normalizing echo message placement within target blocks.

Changes

Build Configuration and Dependency Version Updates

Layer / File(s) Summary
Parent POM version upgrades
pom.xml
Root pom.xml properties are bumped for Tycho core/extras, CBI plugins, RCPTT, Sonar, and JaCoCo; Maven core plugins in pluginManagement are upgraded to newer versions (maven-resources-plugin 3.5.0, maven-antrun-plugin 3.2.0, maven-dependency-plugin 3.10.0, and others).
Tycho source plugin configuration cleanup
pom.xml
Feature-source execution is removed from org.eclipse.tycho:tycho-source-plugin configuration, leaving only the plugin-source execution active.
Antrun execution structure standardization
doc/org.eclipse.tracecompass.doc.dev/pom.xml, doc/org.eclipse.tracecompass.doc.user/pom.xml, doc/org.eclipse.tracecompass.gdbtrace.doc.user/pom.xml, doc/org.eclipse.tracecompass.rcp.doc.user/pom.xml, doc/org.eclipse.tracecompass.tmf.pcap.doc.user/pom.xml, tmf/org.eclipse.tracecompass.tmf.ui/pom.xml
Multiple documentation and UI module pom.xml files standardize maven-antrun-plugin Ant task structure by moving echo messages inside target blocks and using consistent message attribute syntax across generate-documentation, clean-documentation, and CSS-handling executions.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Suggested reviewers

  • MatthewKhouzam

Poem

🐰 Builds are cleaner, versions bright,
Antrun echoes find their right,
Tycho's feather falls away,
Maven plugins dance to play!
Hopping forward with delight! 🏗️

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the two main changes: updating Maven plugin versions and fixing build messages structure across multiple pom.xml files.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
pom.xml (1)

43-43: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Align required-maven-version with Tycho 5.0.2’s Maven minimum.

  • Tycho 5.0.2’s system requirements list Maven 3.9.9 as the minimum, but pom.xml currently sets required-maven-version to 3.9.
🔧 Proposed fix
-    <required-maven-version>3.9</required-maven-version>
+    <required-maven-version>3.9.9</required-maven-version>
  • build-api-docs profile pins maven-javadoc-plugin to 3.6.2, while the rest of the build config uses 3.12.0; align these to avoid inconsistent javadoc behavior across profiles.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@pom.xml` at line 43, Update the pom.xml to match Tycho 5.0.2’s Maven minimum
by changing the required-maven-version value from "3.9" to "3.9.9", and align
javadoc plugin versions by updating the maven-javadoc-plugin declaration inside
the build-api-docs profile to use the same version used elsewhere in the build
(3.12.0) so javadoc behavior is consistent across profiles; modify the XML
elements named required-maven-version and the maven-javadoc-plugin entry inside
the build-api-docs profile accordingly.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@pom.xml`:
- Line 43: Update the pom.xml to match Tycho 5.0.2’s Maven minimum by changing
the required-maven-version value from "3.9" to "3.9.9", and align javadoc plugin
versions by updating the maven-javadoc-plugin declaration inside the
build-api-docs profile to use the same version used elsewhere in the build
(3.12.0) so javadoc behavior is consistent across profiles; modify the XML
elements named required-maven-version and the maven-javadoc-plugin entry inside
the build-api-docs profile accordingly.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: dab6a323-c691-45a4-bc02-927971421ad8

📥 Commits

Reviewing files that changed from the base of the PR and between 3c40d1c and 0d25470.

📒 Files selected for processing (7)
  • doc/org.eclipse.tracecompass.doc.dev/pom.xml
  • doc/org.eclipse.tracecompass.doc.user/pom.xml
  • doc/org.eclipse.tracecompass.gdbtrace.doc.user/pom.xml
  • doc/org.eclipse.tracecompass.rcp.doc.user/pom.xml
  • doc/org.eclipse.tracecompass.tmf.pcap.doc.user/pom.xml
  • pom.xml
  • tmf/org.eclipse.tracecompass.tmf.ui/pom.xml

Signed-off-by: Arnaud Fiorini <fiorini.arnaud@gmail.com>
@arfio arfio force-pushed the mvn-update-plugins branch from 0d25470 to 5ec4149 Compare May 21, 2026 11:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant