tadayosi opened a new issue #1935:
URL: https://github.com/apache/camel-k/issues/1935


   Trying to run the following script `test.js` with the command `kamel run -d 
camel-quarkus test.js` fails to build a kit.
   ```js
   // camel-k: language=js
   restConfiguration()
     .component("undertow")
     .contextPath("rest")
     .host("0.0.0.0")
     .port(9101);
   rest("/undertow")
     .get("/hello").produces("application/json")
     .to("direct:hello");
   from("direct:hello")
     .setBody(simple("hello"))
     .log("body = ${body}");
   ```
   
   The operator got the following error:
   ```
   [ERROR] [ERROR] Some problems were encountered while processing the POMs:
   [ERROR] 'dependencies.dependency.version' for 
org.apache.camel:camel-undertow:jar is missing. @ line 35, column 17
    @ 
   [ERROR] The build could not read 1 project -> [Help 1]
   [ERROR]   
   [ERROR]   The project 
org.apache.camel.k.integration:camel-k-integration:1.3.0 
(/tmp/builder-947734287/maven/pom.xml) has 1 error
   [ERROR]     'dependencies.dependency.version' for 
org.apache.camel:camel-undertow:jar is missing. @ line 35, column 17
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
   ```


----------------------------------------------------------------
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.

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


Reply via email to