in src/main/java/org/apache/sling/tooling/lc/Main.java [23:37]
public static void main(String[] args) throws Exception {
String firstVersion = "12";
String secondVersion = "13-SNAPSHOT";
String output = "plaintext";
if (args.length == 2) {
firstVersion = args[0];
secondVersion = args[1];
}
if (args.length == 3) {
output = args[2];
}
new LaunchpadComparer(firstVersion, secondVersion, output, "..").run();
}