Package org.platformlayer.ops.java

Examples of org.platformlayer.ops.java.JavaCommandBuilder.addClasspath()


  @Override
  protected Command getCommand() throws OpsException {
    JavaCommandBuilder builder = new JavaCommandBuilder();
    builder.setMainClass("org.apache.zookeeper.server.quorum.QuorumPeerMain");
    builder.addArgument(Argument.buildFile(getConfigurationFile()));
    builder.addClasspath(getInstanceDir(), false);
    builder.addClasspathFolder(getBaseDir());
    builder.addClasspathFolder(new File(getBaseDir(), "lib"));

    return builder.get();
    // directory=${instanceDir}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.