Skip to content
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

Upgrade lifecycle plugins to 4.x #1048

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@
*/
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 = "4.0.0-SNAPSHOT";

protected static final String COMPILER_PLUGIN_VERSION = "3.11.0";
protected static final String COMPILER_PLUGIN_VERSION = "4.0.0-SNAPSHOT";

protected static final String SUREFIRE_PLUGIN_VERSION = "3.1.2";

protected static final String INSTALL_PLUGIN_VERSION = "3.1.1";
protected static final String INSTALL_PLUGIN_VERSION = "4.0.0-SNAPSHOT";

protected static final String DEPLOY_PLUGIN_VERSION = "3.1.1";
protected static final String DEPLOY_PLUGIN_VERSION = "4.0.0-SNAPSHOT";

// packaging

protected static final String JAR_PLUGIN_VERSION = "3.3.0";
protected static final String JAR_PLUGIN_VERSION = "4.0.0-SNAPSHOT";

protected static final String EAR_PLUGIN_VERSION = "3.3.0";

protected static final String EJB_PLUGIN_VERSION = "3.2.1";

protected static final String PLUGIN_PLUGIN_VERSION = "3.9.0";
protected static final String PLUGIN_PLUGIN_VERSION = "3.11.1-SNAPSHOT";

protected static final String RAR_PLUGIN_VERSION = "3.0.0";

Expand Down