All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.algomaster99.terminator.index.Index Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy