Merge branch '1.5.x' into 2.0.x

This commit is contained in:
Phillip Webb
2019-06-28 23:27:59 -07:00
342 changed files with 332 additions and 139 deletions

View File

@@ -30,6 +30,7 @@ import java.util.Properties;
*
* @author Andy Wilkinson
* @author Stephane Nicoll
* @since 1.0.0
*/
public final class BuildPropertiesWriter {

View File

@@ -28,6 +28,7 @@ import java.security.NoSuchAlgorithmException;
*
* @author Dave Syer
* @author Phillip Webb
* @since 1.0.0
*/
public abstract class FileUtils {

View File

@@ -52,6 +52,7 @@ import org.apache.commons.compress.archivers.zip.UnixStat;
*
* @author Phillip Webb
* @author Andy Wilkinson
* @since 1.0.0
*/
public class JarWriter implements LoaderClassesWriter, AutoCloseable {

View File

@@ -22,6 +22,7 @@ package org.springframework.boot.loader.tools;
* custom loader classes.
*
* @author Phillip Webb
* @since 1.0.0
* @see Layouts
* @see RepackagingLayout
* @see CustomLoaderLayout

View File

@@ -23,6 +23,7 @@ import java.io.File;
*
* @author Dave Syer
* @author Phillip Webb
* @since 1.0.0
*/
@FunctionalInterface
public interface LayoutFactory {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2018 the original author or authors.
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,6 +28,7 @@ import java.util.Map;
* @author Phillip Webb
* @author Dave Syer
* @author Andy Wilkinson
* @since 1.0.0
*/
public final class Layouts {

View File

@@ -22,6 +22,7 @@ import java.io.IOException;
* Encapsulates information about libraries that may be packed into the archive.
*
* @author Phillip Webb
* @since 1.0.0
*/
@FunctionalInterface
public interface Libraries {

View File

@@ -23,6 +23,7 @@ import java.io.IOException;
* Callback interface used to iterate {@link Libraries}.
*
* @author Phillip Webb
* @since 1.0.0
*/
@FunctionalInterface
public interface LibraryCallback {

View File

@@ -22,6 +22,7 @@ package org.springframework.boot.loader.tools;
* A custom {@link Layout} can handle additional scopes as required.
*
* @author Phillip Webb
* @since 1.0.0
*/
public interface LibraryScope {

View File

@@ -50,6 +50,7 @@ import org.springframework.asm.Type;
*
* @author Phillip Webb
* @author Andy Wilkinson
* @since 1.0.0
*/
public abstract class MainClassFinder {

View File

@@ -44,6 +44,7 @@ import org.springframework.util.StringUtils;
* @author Phillip Webb
* @author Andy Wilkinson
* @author Stephane Nicoll
* @since 1.0.0
*/
public class Repackager {