This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit af3bf7a321c188fe877073a718bf6837be37d6b4 Author: lburgazzoli <[email protected]> AuthorDate: Wed Apr 1 17:06:51 2020 +0200 Fix findings --- .../camel/quarkus/core/deployment/NativeImageProcessor.java | 2 +- integration-tests/rest-binding-mode-xml/pom.xml | 8 -------- .../src/main/resources/application.properties | 8 +------- 3 files changed, 2 insertions(+), 16 deletions(-) diff --git a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/NativeImageProcessor.java b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/NativeImageProcessor.java index b7845e6..9338b7a 100644 --- a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/NativeImageProcessor.java +++ b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/NativeImageProcessor.java @@ -302,7 +302,6 @@ public class NativeImageProcessor { org.apache.camel.main.DefaultConfigurationProperties.class, org.apache.camel.main.MainConfigurationProperties.class, org.apache.camel.main.HystrixConfigurationProperties.class, - org.apache.camel.main.Resilience4jConfigurationProperties.class, org.apache.camel.main.RestConfigurationProperties.class)); // TODO: The classes below are needed to fix https://github.com/apache/camel-quarkus/issues/1005 @@ -310,6 +309,7 @@ public class NativeImageProcessor { reflectiveClass.produce(new ReflectiveClassBuildItem( true, false, + org.apache.camel.main.Resilience4jConfigurationProperties.class, org.apache.camel.model.Resilience4jConfigurationDefinition.class, org.apache.camel.model.Resilience4jConfigurationCommon.class, org.apache.camel.spi.RestConfiguration.class)); diff --git a/integration-tests/rest-binding-mode-xml/pom.xml b/integration-tests/rest-binding-mode-xml/pom.xml index 9c473b2..7da3c3b 100644 --- a/integration-tests/rest-binding-mode-xml/pom.xml +++ b/integration-tests/rest-binding-mode-xml/pom.xml @@ -68,14 +68,6 @@ <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-jaxb</artifactId> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-log</artifactId> - </dependency> - <dependency><!-- Leave this one out (and save ~560 kB of the native image) unless you want to attach uploads to the camel message --> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-attachments</artifactId> - </dependency> <!-- test dependencies --> <dependency> diff --git a/integration-tests/rest-binding-mode-xml/src/main/resources/application.properties b/integration-tests/rest-binding-mode-xml/src/main/resources/application.properties index f6591cf..2edca49 100644 --- a/integration-tests/rest-binding-mode-xml/src/main/resources/application.properties +++ b/integration-tests/rest-binding-mode-xml/src/main/resources/application.properties @@ -14,14 +14,8 @@ ## See the License for the specific language governing permissions and ## limitations under the License. ## --------------------------------------------------------------------------- + # # Quarkus # -quarkus.ssl.native=true -quarkus.http.body.uploads-directory=target/uploads quarkus.log.file.enable = false -quarkus.log.category."org.apache.camel.quarkus.core.deployment".level = INFO -quarkus.log.category."org.apache.camel.quarkus.component.platform.http".level = INFO - -# Required by the encoding() test -quarkus.native.add-all-charsets = true
