x2361 opened a new issue, #3307:
URL: https://github.com/apache/camel-k/issues/3307

   The kamel local build command report a message without any detail. 
   Is there any way to see the detail log to show the progress of building flow?
   Hard to step forward with just a exit code. 
   Following is the source code and command lines, thanks a lot.
   
   S:~/study-kamel$ cat hello.java
   // camel-k: language=java
   
   import org.apache.camel.builder.RouteBuilder;
   
   public class hello extends RouteBuilder {
     @Override
     public void configure() throws Exception {
   
         // Write your routes here, for example:
         from("timer:java?period=1000")
           .routeId("java")
           .setBody()
             .simple("Hello Camel K from ${routeId}")
           .to("log:info");
   
     }
   }
   
   S:~/study-kamel$ kamel local inspect hello.java
   dependencies:
   camel:timer
   camel:log
   mvn:org.apache.camel.quarkus:camel-quarkus-java-joor-dsl
   
   S:~/study-kamel$ kamel local build hello.java
   failure while building project: exit status 1
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to