diff --git a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java index 38edb926a6..0a6a1c83f4 100644 --- a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java +++ b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java @@ -70,10 +70,12 @@ public abstract class ExecutableArchiveLauncher extends Launcher { protected List getClassPathArchives() throws Exception { List archives = new ArrayList( this.archive.getNestedArchives(new EntryFilter() { + @Override public boolean matches(Entry entry) { return isNestedArchive(entry); } + })); postProcessClassPathArchives(archives); return archives;