Package com.iggroup.oss.restdoclet.plugin.io

Examples of com.iggroup.oss.restdoclet.plugin.io.JarBuilder


      LOG.debug("Creating properties: " + artifactId + ", " + version + ", "
         + finalName + ", " + classifier + ", " + scmUrl);
      cc.createProperties(artifactId, version, finalName, classifier, scmUrl);
      LOG.debug("Building jar: " + finalName + '-' + classifier);
      File jar = new JarBuilder(dirs, finalName + '-' + classifier).build();

      LOG.info("Deploying " + jar.getName());
      if (deployUrl != null && deployUrl.toLowerCase().startsWith("http")) {
         FileUploader.upload(deployUrl, deployDir, jar);
      }
View Full Code Here

TOP

Related Classes of com.iggroup.oss.restdoclet.plugin.io.JarBuilder

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.