Commit 628cd368 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Update development mode in PluginManager to add jsp compiled classes in the...

Update development mode in PluginManager to add jsp compiled classes in the default classloader of the plugin.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3848 b35dd754-fafc-0310-a699-88a17e54d16e
parent df776c5e
......@@ -193,6 +193,12 @@ public class PluginManager {
String webRoot = System.getProperty(webRootKey);
String classesDir = System.getProperty(classesDirKey);
boolean inDevelopmentMode = webRoot != null && classesDir != null;
if(inDevelopmentMode){
final File compilationClassesDir = new File(pluginDir, "classes");
if(!compilationClassesDir.exists()){
compilationClassesDir.mkdir();
}
}
if (parentPluginNode != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment