Changed pom.xml to also build a jar file and upload it to the repository

This commit is contained in:
Nanne Baars
2015-05-03 07:50:29 +02:00
parent 35c8c79138
commit 6866208ca2
3 changed files with 27 additions and 12 deletions

View File

@ -70,7 +70,7 @@ public class Plugin {
this.lesson = clazz;
}
} catch (ClassNotFoundException e) {
logger.error("Unable to load class {}", name);
logger.error("Unable to load class {}", name, e);
}
}

View File

@ -43,7 +43,7 @@ public class PluginsLoader implements Runnable {
plugins.add(plugin);
}
} catch (Plugin.PluginLoadingFailure e) {
logger.error("Unable to load plugin, continue loading others...");
logger.error("Unable to load plugin, continue loading others...", e);
}
return FileVisitResult.CONTINUE;
}