You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2017/03/18 09:21:47 UTC

camel git commit: CAMEL-10925: fix problem with clean repo

Repository: camel
Updated Branches:
  refs/heads/master f1737ded8 -> d52bb561d


CAMEL-10925: fix problem with clean repo


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d52bb561
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d52bb561
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d52bb561

Branch: refs/heads/master
Commit: d52bb561d2de926b99d94e2d272790d55d408ca0
Parents: f1737de
Author: Nicola Ferraro <ni...@gmail.com>
Authored: Sat Mar 18 10:21:23 2017 +0100
Committer: Nicola Ferraro <ni...@gmail.com>
Committed: Sat Mar 18 10:21:23 2017 +0100

----------------------------------------------------------------------
 .../org/apache/camel/itest/springboot/util/ArquillianPackager.java  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d52bb561/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
----------------------------------------------------------------------
diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
index ac2fc05..f153247 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
@@ -486,6 +486,7 @@ public final class ArquillianPackager {
         pom = pom.replace("#{module}", config.getModuleName());
 
         File pomFile = new File(config.getModuleBasePath() + "/target/itest-spring-boot-pom.xml");
+        pomFile.getParentFile().mkdirs();
         try (FileWriter fw = new FileWriter(pomFile)) {
             IOUtils.write(pom, fw);
         }