You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/01/06 09:44:20 UTC

[GitHub] [camel-quarkus] ppalaga opened a new issue #598: Check whether enableHttpsUrlHandler, enableJni and enableJni are really required for native testing

ppalaga opened a new issue #598: Check whether enableHttpsUrlHandler, enableJni and enableJni are really required for native testing 
URL: https://github.com/apache/camel-quarkus/issues/598
 
 
   Some of these options look a bit suspicious. We should check at some point whether enableHttpsUrlHandler enableJni and enableJni are really required.
   
   https://github.com/apache/camel-quarkus/pull/597#discussion_r363190299

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] lburgazzoli closed issue #598: Use quarkus.package.type=native instead of the native-image mojo

Posted by GitBox <gi...@apache.org>.
lburgazzoli closed issue #598: Use quarkus.package.type=native instead of the native-image mojo
URL: https://github.com/apache/camel-quarkus/issues/598
 
 
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] ppalaga commented on issue #598: Check whether enableHttpsUrlHandler, enableJni and enableJni are really required for native testing

Posted by GitBox <gi...@apache.org>.
ppalaga commented on issue #598: Check whether enableHttpsUrlHandler, enableJni and enableJni are really required for native testing 
URL: https://github.com/apache/camel-quarkus/issues/598#issuecomment-586200275
 
 
   As noted in #713, Quarkus recommends to stop usisng the `native-image` mojo altogether replacing it with
    
    ```
    <profiles>
        <profile>
            <id>native</id>
            <properties>
                <quarkus.package.type>native</quarkus.package.type>
            </properties>
        </profile>
    </profiles>
   ```
   
   Let's apply this for our existing itests and examples

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services