jamesnetherton commented on code in PR #4385:
URL: https://github.com/apache/camel-quarkus/pull/4385#discussion_r1064468484
##########
integration-tests/groovy-dsl/pom.xml:
##########
@@ -39,6 +39,26 @@
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-direct</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.apache.camel.quarkus</groupId>
+ <artifactId>camel-quarkus-seda</artifactId>
Review Comment:
Please can you make sure these `org.apache.camel-quarkus` dependencies are
also in the `virtualDependencies` profile (you can add them automatically with
`mvn process-resources -Pformat -N`).
##########
integration-tests/groovy-dsl/pom.xml:
##########
@@ -100,6 +120,36 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>native</id>
+ <activation>
+ <property>
+ <name>native</name>
+ </property>
+ </activation>
+ <properties>
+ <quarkus.package.type>native</quarkus.package.type>
+ <!-- To prevent getting DeletedElementException: Unsupported
method java.lang.Class.registerNatives()
+ is reachable for some use cases -->
+
<quarkus.native.additional-build-args>--report-unsupported-elements-at-runtime</quarkus.native.additional-build-args>
Review Comment:
Is this suppressing potential issues that users may see?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]