Updated dependencies.

This commit is contained in:
Erik C. Thauvin 2016-02-05 12:53:03 -08:00
parent 2c1602f331
commit e1685ba706
8 changed files with 151 additions and 140 deletions

View file

@ -31,11 +31,11 @@
*/
package net.thauvin.erik.mobibot;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.Namespace;
import org.jdom.input.SAXBuilder;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.JDOMException;
import org.jdom2.Namespace;
import org.jdom2.input.SAXBuilder;
import java.io.IOException;
import java.net.URL;

View file

@ -31,7 +31,7 @@
*/
package net.thauvin.erik.mobibot;
import org.apache.commons.net.WhoisClient;
import org.apache.commons.net.whois.WhoisClient;
import java.io.IOException;
import java.net.InetAddress;
@ -155,4 +155,4 @@ final class Lookup
return lines;
}
}
}

View file

@ -394,13 +394,12 @@ public class Mobibot extends PircBot
Commands.DEBUG_ARG,
false,
"print debug & logging data directly to the console");
//noinspection AccessStaticViaInstance
options.addOption(OptionBuilder.withArgName("file").hasArg().withDescription("use alternate properties file")
.withLongOpt(Commands.PROPS_ARG).create(Commands.PROPS_ARG.substring(0, 1)));
options.addOption(Option.builder(Commands.PROPS_ARG.substring(0, 1)).hasArg().argName("file")
.desc("use alternate properties file").longOpt(Commands.PROPS_ARG).build());
options.addOption(Commands.VERSION_ARG.substring(0, 1), Commands.VERSION_ARG, false, "print version info");
// Parse the command line
final CommandLineParser parser = new PosixParser();
final CommandLineParser parser = new DefaultParser();
CommandLine line = null;
try