We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 238c1b6 commit d319347Copy full SHA for d319347
src/main/java/net/minecraftforge/gradle/user/TaskRecompileMc.java
@@ -80,6 +80,7 @@ public void doStuff() throws IOException
80
extractSources(tempSrc, inJar);
81
82
AntBuilder ant = CreateStartTask.setupAnt(this);
83
+ getExtPath();
84
// recompile
85
ant.invokeMethod("javac",
86
ImmutableMap.builder()
@@ -92,7 +93,7 @@ public void doStuff() throws IOException
92
93
.put("source", "1.6")
94
.put("target", "1.6")
95
.put("debug", "true")
- .put("java.ext.dirs", getExtPath())
96
+ //.put("Djava.ext.dirs", )
97
.build()
98
);
99
@@ -116,6 +117,7 @@ private static String getExtPath()
116
117
}
118
119
120
+ System.setProperty("java.ext.dirs", newExtDirs);
121
return newExtDirs;
122
123
0 commit comments