Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ static class SiteLifecycleProvider extends BaseLifecycleProvider {

static class CleanLifecycle implements Lifecycle {

private static final String MAVEN_CLEAN_PLUGIN_VERSION = "3.4.0";
private static final String MAVEN_CLEAN_PLUGIN_VERSION = "3.5.0";

@Override
public String id() {
Expand Down Expand Up @@ -529,7 +529,7 @@ public Collection<Alias> aliases() {

static class SiteLifecycle implements Lifecycle {

private static final String MAVEN_SITE_PLUGIN_VERSION = "3.21.0";
private static final String MAVEN_SITE_PLUGIN_VERSION = "3.22.0";
private static final String MAVEN_SITE_PLUGIN =
MAVEN_PLUGINS + "maven-site-plugin:" + MAVEN_SITE_PLUGIN_VERSION + ":";
private static final String PHASE_SITE = "site";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,29 +35,29 @@
*/
public abstract class AbstractLifecycleMappingProvider implements Provider<LifecycleMapping> {
// START SNIPPET: versions
protected static final String RESOURCES_PLUGIN_VERSION = "3.3.1";
protected static final String RESOURCES_PLUGIN_VERSION = "3.5.0";

protected static final String COMPILER_PLUGIN_VERSION = "3.13.0";
protected static final String COMPILER_PLUGIN_VERSION = "3.16.0";

protected static final String SUREFIRE_PLUGIN_VERSION = "3.5.2";
protected static final String SUREFIRE_PLUGIN_VERSION = "3.6.0";

protected static final String INSTALL_PLUGIN_VERSION = "3.1.3";
protected static final String INSTALL_PLUGIN_VERSION = "3.1.4";

protected static final String DEPLOY_PLUGIN_VERSION = "3.1.3";
protected static final String DEPLOY_PLUGIN_VERSION = "3.1.4";

// packaging

protected static final String JAR_PLUGIN_VERSION = "3.4.2";
protected static final String JAR_PLUGIN_VERSION = "3.5.1";

protected static final String EAR_PLUGIN_VERSION = "3.3.0";
protected static final String EAR_PLUGIN_VERSION = "3.4.0";

protected static final String EJB_PLUGIN_VERSION = "3.2.1";
protected static final String EJB_PLUGIN_VERSION = "3.3.0";

protected static final String PLUGIN_PLUGIN_VERSION = "3.15.1";
protected static final String PLUGIN_PLUGIN_VERSION = "3.15.2";

protected static final String RAR_PLUGIN_VERSION = "3.0.0";
protected static final String RAR_PLUGIN_VERSION = "3.1.0";

protected static final String WAR_PLUGIN_VERSION = "3.4.0";
protected static final String WAR_PLUGIN_VERSION = "3.5.1";
// END SNIPPET: versions

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

maven-plugin-plugin 3.16.0 was released on Sep 6, 2026 — two days before this PR. Should be:

Suggested change
// END SNIPPET: versions
protected static final String PLUGIN_PLUGIN_VERSION = "3.16.0";


private final LifecycleMapping lifecycleMapping;
Expand Down
Loading