Merge branch '1.5.x'

This commit is contained in:
Phillip Webb
2016-12-19 13:21:18 -08:00
362 changed files with 664 additions and 132 deletions

View File

@@ -628,4 +628,5 @@ public class PropertiesLauncher extends Launcher {
}
}
}

View File

@@ -65,7 +65,8 @@ public class ExplodedArchive implements Archive {
* Create a new {@link ExplodedArchive} instance.
* @param root the root folder
* @param recursive if recursive searching should be used to locate the manifest.
* Defaults to {@code true}, folders with a large tree might want to set this to {@code
* Defaults to {@code true}, folders with a large tree might want to set this to
* {@code
* false}.
*/
public ExplodedArchive(File root, boolean recursive) {

View File

@@ -404,7 +404,9 @@ public class JarFile extends java.util.jar.JarFile {
* The type of a {@link JarFile}.
*/
enum JarFileType {
DIRECT, NESTED_DIRECTORY, NESTED_JAR
}
}

View File

@@ -32,7 +32,6 @@ import java.util.Set;
* @author Juergen Hoeller
* @author Rob Harrop
* @author Dave Syer
*
* @see System#getProperty(String)
*/
public abstract class SystemPropertyUtils {

View File

@@ -122,6 +122,7 @@ class InternalOutputCapture implements TestRule {
this.copy.flush();
this.original.flush();
}
}
}

View File

@@ -253,6 +253,7 @@ public class PropertiesLauncherTests {
protected Class<?> findClass(String name) throws ClassNotFoundException {
return super.findClass(name);
}
}
}

View File

@@ -60,4 +60,5 @@ public class WarLauncherTests extends AbstractExecutableArchiveLauncherTests {
new URL("jar:" + jarRoot.toURI().toURL() + "!/WEB-INF/classes!/"),
new URL("jar:" + jarRoot.toURI().toURL() + "!/WEB-INF/lib/foo.jar!/"));
}
}