Skip to content
Open
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 @@ -92,8 +92,8 @@ public class PluginUpgradeStrategy extends AbstractUpgradeStrategy {
new PluginUpgrade(
"net.alchim31.maven",
"scala-maven-plugin",
"4.9.2",
"Versions before 4.9.2 call add() on immutable lists returned by Maven 4 API"),
"4.9.5",
"Versions before 4.9.5 call add() on immutable lists returned by Maven 4 API"),
new PluginUpgrade(
DEFAULT_MAVEN_PLUGIN_GROUP_ID,
"maven-resources-plugin",
Expand Down Expand Up @@ -261,7 +261,7 @@ private Map<String, PluginUpgradeInfo> getPluginUpgradesMap() {
new PluginUpgradeInfo(DEFAULT_MAVEN_PLUGIN_GROUP_ID, "maven-surefire-report-plugin", "3.5.2"));
upgrades.put(
"net.alchim31.maven:scala-maven-plugin",
new PluginUpgradeInfo("net.alchim31.maven", "scala-maven-plugin", "4.9.2"));
new PluginUpgradeInfo("net.alchim31.maven", "scala-maven-plugin", "4.9.5"));
upgrades.put(
DEFAULT_MAVEN_PLUGIN_GROUP_ID + ":maven-resources-plugin",
new PluginUpgradeInfo(DEFAULT_MAVEN_PLUGIN_GROUP_ID, "maven-resources-plugin", "3.3.1"));
Expand Down
Loading