Commit baec9f50 authored by Phillip Webb's avatar Phillip Webb

Merge branch '1.1.x'

parents 83bd36d8 2188e355
......@@ -61,7 +61,7 @@ public class StarterDependenciesIntegrationTests {
public static List<String[]> getStarters() {
List<String[]> starters = new ArrayList<String[]>();
for (File file : new File("../spring-boot-starters").listFiles()) {
if (file.isDirectory()) {
if (file.isDirectory() && new File(file, "pom.xml").exists()) {
String name = file.getName();
if (name.startsWith(STARTER_NAME_PREFIX)
&& !EXCLUDED_STARTERS.contains(file.getName())) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment