| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>components</artifactId> |
| <version>4.7.0</version> |
| </parent> |
| |
| <artifactId>camel-soap</artifactId> |
| <packaging>jar</packaging> |
| <name>Camel :: SOAP</name> |
| <description>Camel SOAP support</description> |
| |
| <properties> |
| <camel.surefire.fork.additional-vmargs>--add-opens java.xml/com.sun.org.apache.xerces.internal.dom=ALL-UNNAMED --add-opens java.xml/com.sun.org.apache.xerces.internal.jaxp=ALL-UNNAMED --add-opens java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED</camel.surefire.fork.additional-vmargs> |
| </properties> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-support</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-jaxb</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.sun.xml.bind</groupId> |
| <artifactId>jaxb-impl</artifactId> |
| <version>${jaxb-impl-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.xml.ws</groupId> |
| <artifactId>jakarta.xml.ws-api</artifactId> |
| <version>${jakarta-xml-ws-api-version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.xml.bind</groupId> |
| <artifactId>jaxb-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.jws</groupId> |
| <artifactId>jakarta.jws-api</artifactId> |
| <version>${jakarta-jws-api-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.xml.messaging.saaj</groupId> |
| <artifactId>saaj-impl</artifactId> |
| <version>3.0.4</version> |
| <exclusions> |
| <exclusion> |
| <!--Get dependency from jaxb-runtime--> |
| <groupId>org.jvnet.staxex</groupId> |
| <artifactId>stax-ex</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <!-- test dependencies --> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-test-junit5</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-test-spring-junit5</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-cxf-spring-transport</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-cxf-soap</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-test</artifactId> |
| <version>${spring-version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- needed by jetty http server to load class: org.jvnet.staxex.util.XMLStreamReaderToXMLStreamWriter --> |
| <dependency> |
| <groupId>com.sun.xml.bind</groupId> |
| <artifactId>jaxb-osgi</artifactId> |
| <version>${jaxb-osgi-version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.cxf</groupId> |
| <artifactId>cxf-xjc-plugin</artifactId> |
| <version>${cxf-xjc-plugin-version}</version> |
| <executions> |
| <execution> |
| <id>generate-sources-jaxb</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>xsdtojava-tests</goal> |
| </goals> |
| <configuration> |
| <testSourceRoot>${basedir}/target/generated/src/test/java</testSourceRoot> |
| <xsdOptions> |
| <xsdOption> |
| <extension>true</extension> |
| <xsd> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/custom-soap-headers.xsd |
| </xsd> |
| <bindingFile> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/xjc-bindings.xml |
| </bindingFile> |
| </xsdOption> |
| <xsdOption> |
| <extension>true</extension> |
| <xsd> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/contact.xsd |
| </xsd> |
| <bindingFile> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/xjc-bindings.xml |
| </bindingFile> |
| </xsdOption> |
| </xsdOptions> |
| </configuration> |
| </execution> |
| <execution> |
| <id>generate-sources</id> |
| <phase>generate-sources</phase> |
| <configuration> |
| <sourceRoot>${basedir}/target/xjc</sourceRoot> |
| <extensions> |
| <extension>net.java.dev.jaxb2-commons:jaxb-fluent-api:2.1.8</extension> |
| </extensions> |
| <xsdOptions> |
| <xsdOption> |
| <xsd>${basedir}/src/main/resources/soap.xsd</xsd> |
| <extensionArgs> |
| <extensionArg>-Xfluent-api</extensionArg> |
| </extensionArgs> |
| </xsdOption> |
| <xsdOption> |
| <xsd>${basedir}/src/main/resources/soap12.xsd</xsd> |
| <extensionArgs> |
| <extensionArg>-Xfluent-api</extensionArg> |
| </extensionArgs> |
| </xsdOption> |
| <xsdOption> |
| <xsd>${basedir}/src/main/resources/xml.xsd</xsd> |
| <extensionArgs> |
| <extensionArg>-Xfluent-api</extensionArg> |
| </extensionArgs> |
| </xsdOption> |
| </xsdOptions> |
| </configuration> |
| <goals> |
| <goal>xsdtojava</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.cxf</groupId> |
| <artifactId>cxf-codegen-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>generate-sources-wsdl</id> |
| <phase>generate-sources</phase> |
| <configuration> |
| <testSourceRoot>${basedir}/target/generated/src/test/java</testSourceRoot> |
| <defaultOptions> |
| <frontEnd>jaxws</frontEnd> |
| </defaultOptions> |
| <wsdlOptions> |
| <wsdlOption> |
| <wsdl> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/CustomerService.wsdl |
| </wsdl> |
| <bindingFiles> |
| <bindingFile> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/binding.xml |
| </bindingFile> |
| </bindingFiles> |
| </wsdlOption> |
| <wsdlOption> |
| <wsdl> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/CustomerService2.wsdl |
| </wsdl> |
| </wsdlOption> |
| <wsdlOption> |
| <wsdl> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/MultiPartCustomerService.wsdl |
| </wsdl> |
| <bindingFiles> |
| <bindingFile> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/binding.xml |
| </bindingFile> |
| </bindingFiles> |
| </wsdlOption> |
| <wsdlOption> |
| <wsdl> |
| ${basedir}/src/test/resources/org/apache/camel/dataformat/soap/TestService.wsdl |
| </wsdl> |
| </wsdlOption> |
| </wsdlOptions> |
| </configuration> |
| <goals> |
| <goal>wsdl2java</goal> |
| </goals> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.cxf.xjcplugins</groupId> |
| <artifactId>cxf-xjc-ts</artifactId> |
| <version>${cxf-xjc-utils-version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |