File tree Expand file tree Collapse file tree 6 files changed +13
-5
lines changed
branding/core/core.jar/org/netbeans/core/startup
src/fi/helsinki/cs/tmc/actions Expand file tree Collapse file tree 6 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ SplashVersionTextFontType=Dialog
19
19
SplashVersionTextColor =0x000000
20
20
SplashVersionTextHorizontalAlignment =right
21
21
22
- currentVersion =Netbeans with TMC 1.3 .0
22
+ currentVersion =Netbeans with TMC 1.4 .0
23
23
LBL_splash_window_title =Starting Netbeans with TMC
24
24
25
25
MSG_warning =NetBeans with TMC IDE - Warning
Original file line number Diff line number Diff line change 10
10
11
11
<target name =" -check-mavenmodules" >
12
12
<uptodate property =" mavenmodules.uptodate"
13
- srcfile =" maven-wrapper/target/nbm/maven-wrapper-1.31 .nbm"
13
+ srcfile =" maven-wrapper/target/nbm/maven-wrapper-1.32 .nbm"
14
14
targetfile =" mavenmodules" />
15
15
</target >
16
16
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >fi.helsinki.cs.tmc</groupId >
6
6
<artifactId >maven-wrapper</artifactId >
7
- <version >1.31 </version >
7
+ <version >1.32 </version >
8
8
<packaging >nbm</packaging >
9
9
10
10
<name >TMC Maven Wrapper</name >
Original file line number Diff line number Diff line change @@ -89,4 +89,4 @@ nbjdk.active=default
89
89
# org.openide.execution,\
90
90
# org.openide.options,\
91
91
# org.openide.util.enumerations
92
- nbplatform.active =Apache_NetBeans_IDE_11.1
92
+ nbplatform.active =Apache_NetBeans_IDE_11.2
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ OpenIDE-Module-Requires:
6
6
org.openide.windows.IOProvider,
7
7
org.openide.windows.WindowManager
8
8
OpenIDE-Module-Install: fi/helsinki/cs/tmc/actions/TmcModuleInstall.class
9
- OpenIDE-Module-Specification-Version: 1.3 .0
9
+ OpenIDE-Module-Specification-Version: 1.4 .0
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ public FixUnoptimalSettings() {
30
30
public void run () {
31
31
fixMavenDependencyDownloadPolicy ();
32
32
fixMavenIndexingPolicy ();
33
+ fixMavenMultiThreadIssue ();
33
34
}
34
35
35
36
private void fixMavenDependencyDownloadPolicy () {
@@ -39,6 +40,13 @@ private void fixMavenDependencyDownloadPolicy() {
39
40
}
40
41
}
41
42
43
+ private void fixMavenMultiThreadIssue () {
44
+ final String setting = mavenPrefrences .get ("defaultOptions" , "" );
45
+ if (!setting .contains ("-T=1 -q" )) {
46
+ mavenPrefrences .put ("defaultOptions" , "-T=1 -q" );
47
+ }
48
+ }
49
+
42
50
private void fixMavenIndexingPolicy () {
43
51
final String disableIndexingValue = indexingPreferences .get ("createIndex" , "" );
44
52
if (!disableIndexingValue .equals ("false" )) {
You can’t perform that action at this time.
0 commit comments