Package org.gradle.api.logging

Examples of org.gradle.api.logging.Logger.debug()


      }
    }

    private void setupInputOutputs(Jar jarTask, String classifier) {
      Logger logger = this.project.getLogger();
      logger.debug("Using classifier: " + classifier + " for task "
          + task.getName());
      File inputFile = jarTask.getArchivePath();
      String outputName = inputFile.getName();
      outputName = StringUtils.stripFilenameExtension(outputName) + "-"
          + classifier + "." + StringUtils.getFilenameExtension(outputName);
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.