You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2023/05/25 14:21:51 UTC

[camel-quarkus] branch main updated: Remove "none" WSDLs as they are not needed

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 95e96fa77a Remove "none" WSDLs as they are not needed
95e96fa77a is described below

commit 95e96fa77a783f57d55014a7590a143f0c441402
Author: Lukas Lowinger <ll...@redhat.com>
AuthorDate: Fri May 19 12:47:48 2023 +0200

    Remove "none" WSDLs as they are not needed
---
 .../cxf-soap-client/src/main/resources/application.properties        | 5 ++---
 .../cxf-soap-server/src/main/resources/application.properties        | 4 +---
 .../src/main/resources/application.properties                        | 4 +---
 3 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/integration-test-groups/cxf-soap/cxf-soap-client/src/main/resources/application.properties b/integration-test-groups/cxf-soap/cxf-soap-client/src/main/resources/application.properties
index 10af40d4a9..a15f27421c 100644
--- a/integration-test-groups/cxf-soap/cxf-soap-client/src/main/resources/application.properties
+++ b/integration-test-groups/cxf-soap/cxf-soap-client/src/main/resources/application.properties
@@ -17,9 +17,8 @@
 
 quarkus.cxf.path=/soapservice
 quarkus.native.resources.includes = wsdl/*.wsdl
-# disable the root config
-quarkus.cxf.codegen.wsdl2java.includes = none.wsdl
-# ... and do everything with named parameter sets so that it works in the grouped module
+
+# do everything with named parameter sets so that it works in the grouped module
 quarkus.cxf.codegen.wsdl2java.CalculatorService.includes = wsdl/CalculatorService.wsdl
 quarkus.cxf.codegen.wsdl2java.CalculatorService.additional-params = -wsdlLocation,classpath:wsdl/CalculatorService.wsdl
 quarkus.cxf.codegen.wsdl2java.BasicAuthCalculatorService.includes = wsdl/BasicAuthCalculatorService.wsdl
diff --git a/integration-test-groups/cxf-soap/cxf-soap-server/src/main/resources/application.properties b/integration-test-groups/cxf-soap/cxf-soap-server/src/main/resources/application.properties
index 9b23797edf..e07e9a7515 100644
--- a/integration-test-groups/cxf-soap/cxf-soap-server/src/main/resources/application.properties
+++ b/integration-test-groups/cxf-soap/cxf-soap-server/src/main/resources/application.properties
@@ -18,9 +18,7 @@
 quarkus.cxf.path=/soapservice
 quarkus.native.resources.includes = wsdl/*.wsdl
 
-# disable the root config
-quarkus.cxf.codegen.wsdl2java.includes = none.wsdl
-# ... and do everything with named parameter sets so that it works in the grouped module
+# do everything with named parameter sets so that it works in the grouped module
 quarkus.cxf.codegen.wsdl2java.server.includes = wsdl/HelloService.wsdl
 quarkus.cxf.codegen.wsdl2java.server.additional-params = -wsdlLocation,classpath:wsdl/HelloService.wsdl,-xjc-Xts
 
diff --git a/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties b/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties
index 839a0bd602..4f459399c3 100644
--- a/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties
+++ b/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties
@@ -18,8 +18,6 @@
 quarkus.cxf.path=/soapservice
 quarkus.native.resources.includes = wsdl/*.wsdl
 
-# disable the root config
-quarkus.cxf.codegen.wsdl2java.includes = none.wsdl
-# ... and do everything with named parameter sets so that it works in the grouped module
+# do everything with named parameter sets so that it works in the grouped module
 quarkus.cxf.codegen.wsdl2java.security-client.includes = wsdl/WssCalculatorService.wsdl
 quarkus.cxf.codegen.wsdl2java.security-client.additional-params = -wsdlLocation,classpath:wsdl/WssCalculatorService.wsdl