From bbd2486c042edde1948a11747f6d08afa339baa9 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 21 Jan 2015 13:16:12 +0000 Subject: [PATCH] Run invoker plugin with a single thread to avoid build failures Running the invoker plugin with multiple threads against an empty Maven cache results in strange build failures where Maven claims that it cannot find a jar or pom file for an artifact that it should be able to find. It would appear that Maven is unable to cope with concurrent writes to its cache. This commit removes the usage of multiple threads that was introduced in 4e907f1. Fixes gh-2389 --- spring-boot-tools/spring-boot-loader/pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot-tools/spring-boot-loader/pom.xml b/spring-boot-tools/spring-boot-loader/pom.xml index 0497615b45a..cff36a52996 100644 --- a/spring-boot-tools/spring-boot-loader/pom.xml +++ b/spring-boot-tools/spring-boot-loader/pom.xml @@ -62,7 +62,6 @@ true ${skipTests} true - 4