Commit 94af8f58 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Server starter should load all archives from lib directory, not bin/lib.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@106 b35dd754-fafc-0310-a699-88a17e54d16e
parent 493b5732
......@@ -57,7 +57,7 @@ abstract public class ServerStarter {
// Load up the bootstrap container
final ClassLoader parent = findParentClassLoader();
// TODO: Possibly load this lib dir as a java property?
File libDir = new File("lib");
File libDir = new File("../lib");
ClassLoader loader = new JiveClassLoader(parent, libDir);
Thread.currentThread().setContextClassLoader(loader);
Class containerClass = loader.loadClass(getBootContainerClassName());
......
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