Package org.springframework.boot.loader.tools

Examples of org.springframework.boot.loader.tools.LibraryCallback


      this.task.setOutputFile(outputFile);
    }

    private void addLibraryDependencies(final RepackageTask task) {
      try {
        task.getLibraries().doWithLibraries(new LibraryCallback() {
          @Override
          public void library(Library library) throws IOException {
            task.getInputs().file(library.getFile());
          }
        });
View Full Code Here

TOP

Related Classes of org.springframework.boot.loader.tools.LibraryCallback

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.