Package net.sf.nic

Examples of net.sf.nic.FileSigner


    // Building the installer.
    File installer = getInstallerFile(targetSpecification);
    buildInstaller(targetSpecification, directory, installer);

    // Signing the installer.
    FileSigner signer = getSigner(installer, false);
    if (signer != null) {
      project.logInfo("Signing the installer '%s'", installer);
      signer.sign(installer);
    } else
      project.logWarning("No signers available to sign '%s'", installer);
  }
View Full Code Here

TOP

Related Classes of net.sf.nic.FileSigner

Copyright © 2018 www.massapicom. 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.