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) {
116116
117117 private Path useBundledMaven () {
118118 Path mavenHome = getConfigDirectory ();
119- Path extractedMavenLocation = mavenHome .resolve ("apache-maven-3.3.9 " );
119+ Path extractedMavenLocation = mavenHome .resolve ("apache-maven-3.5.4 " );
120120 if (Files .exists (extractedMavenLocation )) {
121121 log .info ("Maven already extracted" );
122122
@@ -125,7 +125,7 @@ private Path useBundledMaven() {
125125 }
126126 log .info ("Maven bundle not previously extracted, extracting..." );
127127 try {
128- InputStream data = getClass ().getResourceAsStream ("apache-maven-3.3.9 .zip" );
128+ InputStream data = getClass ().getResourceAsStream ("apache-maven-3.5.4 .zip" );
129129 Preconditions .checkNotNull (
130130 data , "Couldn't load bundled maven from tmc-langs-java.jar." );
131131 Path tmpFile = Files .createTempFile ("tmc-maven" , "zip" );
@@ -139,7 +139,7 @@ private Path useBundledMaven() {
139139 }
140140
141141 // 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 " );
143143 } catch (IOException e ) {
144144 throw new RuntimeException (e );
145145 }
You can’t perform that action at this time.
0 commit comments