File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
java/fi/helsinki/cs/tmc/langs/java/maven
resources/fi/helsinki/cs/tmc/langs/java/maven Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ public void consumeLine(String line) {
116
116
117
117
private Path useBundledMaven () {
118
118
Path mavenHome = getConfigDirectory ();
119
- Path extractedMavenLocation = mavenHome .resolve ("apache-maven-3.3.9 " );
119
+ Path extractedMavenLocation = mavenHome .resolve ("apache-maven-3.5.4 " );
120
120
if (Files .exists (extractedMavenLocation )) {
121
121
log .info ("Maven already extracted" );
122
122
@@ -125,7 +125,7 @@ private Path useBundledMaven() {
125
125
}
126
126
log .info ("Maven bundle not previously extracted, extracting..." );
127
127
try {
128
- InputStream data = getClass ().getResourceAsStream ("apache-maven-3.3.9 .zip" );
128
+ InputStream data = getClass ().getResourceAsStream ("apache-maven-3.5.4 .zip" );
129
129
Preconditions .checkNotNull (
130
130
data , "Couldn't load bundled maven from tmc-langs-java.jar." );
131
131
Path tmpFile = Files .createTempFile ("tmc-maven" , "zip" );
@@ -139,7 +139,7 @@ private Path useBundledMaven() {
139
139
}
140
140
141
141
// Add the name of the extracted folder to the path
142
- return mavenHome .resolve ("apache-maven-3.3.9 " );
142
+ return mavenHome .resolve ("apache-maven-3.5.4 " );
143
143
} catch (IOException e ) {
144
144
throw new RuntimeException (e );
145
145
}
You can’t perform that action at this time.
0 commit comments