public static void main(final String[] arguments) {
if (arguments.length != 3) {
System.out.println("Usage: <group> <artifact> <version>");
} else {
try {
final Artifact artifact = new Artifact(arguments[0], arguments[1], arguments[2]);
final DependencyGrabber grabber = new DependencyGrabber(dummyClassLoader, getExtensionPath());
grabber.copyDependenciesToPath(artifact);
} catch (Exception iae) {
System.out.println(String.format("Could not install the dependency: %s", iae.getMessage()));
iae.printStackTrace();