io.github.algomaster99.terminator.index.Index Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of classfile-fingerprint Show documentation
Show all versions of classfile-fingerprint Show documentation
Generates fingerprint of all classfiles in a JAR.
package io.github.algomaster99.terminator.index;
import java.util.concurrent.Callable;
import picocli.CommandLine;
@CommandLine.Command(
name = "index",
mixinStandardHelpOptions = true,
subcommands = {JdkIndexer.class, SupplyChainIndexer.class, RuntimeIndexer.class},
description = "Create an index of the classfiles")
public class Index implements Callable {
@Override
public Integer call() throws Exception {
new CommandLine(this).usage(System.out);
return 0;
}
public static void main(String[] args) {
new CommandLine(new Index()).execute(args);
}
}