You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new setting to disable the classloading cache (#76)
Add support for disabling the JAR file caches in URLClassLoader & Auto-detect if Gradle Daemon is running and set default for disableClassloadingCache setting. This closes#75
Copy file name to clipboardExpand all lines: src/main/docs/ant-task.html
+7
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,13 @@ <h2>Parameters</h2>
87
87
<td>Reference to a <code>path</code> defined anywhere else. Should be identical to classpath used for compiling the class files.</td>
88
88
</tr>
89
89
90
+
<tr>
91
+
<td>disableClassloadingCache</td>
92
+
<td><code>boolean</code></td>
93
+
<td><code>false</code></td>
94
+
<td>Disable the internal JVM classloading cache when getting bytecode from the classpath. This setting slows down checks, but <em>may</em> work around issues with other Mojos, that do not close their class loaders. If you get <code>FileNotFoundException</code>s related to non-existent JAR entries you can try to work around using this setting.</td>
0 commit comments