Skip to content

Commit 1a58a82

Browse files
authored
Merge pull request #9340 from mbien/bump-maven-version-defaults_30
Bump MavenVersionSettings fallback versions for NB30
2 parents d31cdea + 300956a commit 1a58a82

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

apisupport/maven.apisupport/test/unit/src/org/netbeans/modules/maven/apisupport/NBMNativeMWITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
public class NBMNativeMWITest extends NbTestCase {
4040

41-
private static final String EXPECTED_JAVAC_PLUGIN_VERSION = "3.14.1";
41+
private static final String EXPECTED_JAVAC_PLUGIN_VERSION = "3.15.0";
4242

4343
private FileObject wd;
4444

java/maven/src/org/netbeans/modules/maven/options/MavenVersionSettings.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ public final class MavenVersionSettings {
4545
static {
4646
// TODO update periodically - modifications might require unit test adjustments (e.g NBMNativeMWITest)
4747
// (e.g NBMNativeMWITest checks the compiler plugin version)
48-
String nb_version = "RELEASE280";
48+
String nb_version = "RELEASE300";
4949
String nb_utilities_version = "14.4";
5050
fallback = Map.ofEntries(
5151
entry(key("org.netbeans.api", "org-netbeans-modules-editor"), nb_version), // represents all other nb artifacts
52-
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_COMPILER), "3.14.1"),
53-
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_JAR), "3.4.2"),
54-
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_RESOURCES), "3.3.1"),
55-
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_FAILSAFE), "3.5.4"),
56-
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_SUREFIRE), "3.5.4"),
52+
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_COMPILER), "3.15.0"),
53+
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_JAR), "3.5.0"),
54+
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_RESOURCES), "3.5.0"),
55+
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_FAILSAFE), "3.5.5"),
56+
entry(key(Constants.GROUP_APACHE_PLUGINS, Constants.PLUGIN_SUREFIRE), "3.5.5"),
5757
entry(key("org.apache.netbeans.utilities", "utilities-parent"), nb_utilities_version),
5858
entry(key("org.apache.netbeans.utilities", "nbm-maven-harness"), nb_utilities_version),
5959
entry(key("org.apache.netbeans.utilities", "nbm-shared"), nb_utilities_version),

0 commit comments

Comments
 (0)