You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by "claudio4j (via GitHub)" <gi...@apache.org> on 2023/03/20 18:00:12 UTC

[GitHub] [camel-quarkus] claudio4j opened a new issue, #4676: jira extension throws

claudio4j opened a new issue, #4676:
URL: https://github.com/apache/camel-quarkus/issues/4676

   When using camel-quarkus 2.13.2 and quarkus 2.13.5.Final
   
   Given the following route
   ```
   fromF("kamelet:jira-source?jql=RAW(project=MYP)&delay=30000&%s", params)
       .log("JIRA issue: ${body}");
   ```
   
   And building in native mode with `mvn -Pnative -Dquarkus.native.builder-image=mandrel`
   The execution throws:
   ```
   ClassNotFoundException: com.fasterxml.jackson.datatype.joda.JodaModule
   ```
   
   There is no error in jvm mode.


-- 
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-unsubscribe@camel.apache.org.apache.org

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


[GitHub] [camel-quarkus] jamesnetherton closed issue #4676: jira extension throws ClassNotFoundException: com.fasterxml.jackson.datatype.joda.JodaModule

Posted by "jamesnetherton (via GitHub)" <gi...@apache.org>.
jamesnetherton closed issue #4676: jira extension throws ClassNotFoundException: com.fasterxml.jackson.datatype.joda.JodaModule
URL: https://github.com/apache/camel-quarkus/issues/4676


-- 
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-unsubscribe@camel.apache.org

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


[GitHub] [camel-quarkus] claudio4j commented on issue #4676: jira extension throws

Posted by "claudio4j (via GitHub)" <gi...@apache.org>.
claudio4j commented on issue #4676:
URL: https://github.com/apache/camel-quarkus/issues/4676#issuecomment-1476746365

   While investigating, it led me to add most of jira model classes from package `com.atlassian.jira.rest.client.api.domain`
   and `JSONObject, JSONArray` from `org.codehaus.jettison.json` to camel-quarkus-jira-deployment.
   Also add `com.fasterxml.jackson.datatype.joda.JodaModule` and `org.joda.time.DateTime` to camel-quarkus-jackson-deployment, because jira model classes directly depends on jackson joda module.
   


-- 
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-unsubscribe@camel.apache.org

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