Commit ead9211b authored by Bill Lynch's avatar Bill Lynch Committed by bill

Changed lib path


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@57 b35dd754-fafc-0310-a699-88a17e54d16e
parent 475b2be6
......@@ -56,7 +56,8 @@ abstract public class ServerStarter {
try {
// Load up the bootstrap container
final ClassLoader parent = findParentClassLoader();
File libDir = new File("../lib");
// TODO: Possibly load this lib dir as a java property?
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