You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2019/02/11 15:35:42 UTC

[camel] branch master updated: [CAMEL-13177] Improve build speed - Remove unwanted warning

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 9e72394  [CAMEL-13177] Improve build speed - Remove unwanted warning
9e72394 is described below

commit 9e723948416c1cf7965fc8bda5688690979e4137
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Feb 11 16:35:28 2019 +0100

    [CAMEL-13177] Improve build speed - Remove unwanted warning
---
 .../java/org/apache/camel/maven/packaging/SpringBootStarterMojo.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootStarterMojo.java b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootStarterMojo.java
index 664158c..0e17664 100644
--- a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootStarterMojo.java
+++ b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootStarterMojo.java
@@ -128,10 +128,7 @@ public class SpringBootStarterMojo extends AbstractMojo {
             Document pom = createBasePom();
 
             // Apply changes to the starter pom
-            long t0 = System.currentTimeMillis();
             fixExcludedDependencies(pom);
-            long t1 = System.currentTimeMillis();
-            getLog().warn("Timestamp (excluded dependencies): " + (System.currentTimeMillis() - t0) + " ms");
             fixAdditionalDependencies(pom);
             fixAdditionalRepositories(pom);