mule-service-soap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mule.services</groupId> <artifactId>mule-service-soap</artifactId> <version>1.1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.mule.services</groupId> <artifactId>mule-core-services-parent</artifactId> <version>1.1.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>mule-service-soap</artifactId> <packaging>mule-service</packaging> <version>1.1.2</version> <name>Mule SOAP Service</name> <description>A SOAP service based on CXF</description> <properties> <dom4jVersion>1.6.1</dom4jVersion> <bouncyCastleVersion>1.59</bouncyCastleVersion> <cxfVersion>3.2.1</cxfVersion> <xmlSecVersion>2.0.6</xmlSecVersion> <xmlUnitVersion>1.6</xmlUnitVersion> <jettyVersion>9.4.6.v20170531</jettyVersion> <springVersion>4.1.9.RELEASE</springVersion> <formatterConfigPath>formatter.xml</formatterConfigPath> <wsdlParserVersion>1.1.1</wsdlParserVersion> <muleHttpServiceVersion>1.1.1</muleHttpServiceVersion> </properties> <scm> <connection>scm:git:git://github.com/mulesoft/mule-soap-service.git</connection> <developerConnection>scm:git:git@github.com:mulesoft/mule-soap-service.git</developerConnection> <url>https://github.com/mulesoft/mule-soap-service</url> </scm> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>mule-service</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>mule-service</classifier> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.mule.runtime.plugins</groupId> <artifactId>mule-service-maven-plugin</artifactId> <version>${mule.app.plugins.maven.plugin.version}</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>attach-test-jar</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- CXF --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-core</artifactId> <version>${cxfVersion}</version> <exclusions> <!-- We use the one bundled with the JDK --> <exclusion> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-ws-rm</artifactId> <version>${cxfVersion}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-ws-security</artifactId> <version>${cxfVersion}</version> <exclusions> <!-- We use slf4j --> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <!-- We use BouncyCastle 1.58 --> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> </exclusion> <!-- Contains shaded jetty classes with security problems --> <exclusion> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-simple</artifactId> <version>${cxfVersion}</version> <exclusions> <!-- We use the one bundled with the JDK --> <exclusion> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </exclusion> </exclusions> </dependency> <!-- WSDL PARSER --> <dependency> <groupId>org.mule.wsdl</groupId> <artifactId>mule-wsdl-parser</artifactId> <version>${wsdlParserVersion}</version> <exclusions> <exclusion> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-xml</artifactId> </exclusion> </exclusions> </dependency> <!-- These spring dependencies are needed by cxf's SpringBusFactory --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${springVersion}</version> </dependency> <!-- We should use this version to work with CXF 3--> <dependency> <groupId>org.apache.santuario</groupId> <artifactId>xmlsec</artifactId> <version>${xmlSecVersion}</version> </dependency> <!-- Mule Dependencies --> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-core</artifactId> <version>${mule.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-tls</artifactId> <version>${mule.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-service-http-api</artifactId> <version>${mule.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-service-soap-api</artifactId> <version>${mule.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mule.services</groupId> <artifactId>mule-service-http</artifactId> <version>${muleHttpServiceVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-extensions-soap-api</artifactId> <scope>provided</scope> </dependency> <!-- Common Dependencies --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <!-- Mule uses a particular BouncyCastle version --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>${bouncyCastleVersion}</version> </dependency> <!-- XML Handling --> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> </dependency> <dependency> <groupId>net.java.dev.stax-utils</groupId> <artifactId>stax-utils</artifactId> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> </dependency> <!-- Test Dependencies --> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <scope>test</scope> </dependency> <!-- Test Server --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http-jetty</artifactId> <version>${cxfVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>${cxfVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>${cxfVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jettyVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>${jettyVersion}</version> <scope>test</scope> </dependency> <!-- Mule Test Dependencies --> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-unit</artifactId> <version>${mule.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-allure</artifactId> <version>${mule.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.services</groupId> <artifactId>mule-service-weave</artifactId> <classifier>mule-service</classifier> <version>${weaveVersion}</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <downloadUrl>http://www.mulesoft.org/display/MULE/Download</downloadUrl> <repository> <id>mule-releases</id> <name>Mule Release Repository</name> <url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url> </repository> <snapshotRepository> <id>mule-snapshots</id> <name>Mule Snapshot Repository</name> <url>https://repository-master.mulesoft.org/nexus/content/repositories/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>mule</id> <name>Mule Repository</name> <url>https://repository.mulesoft.org/nexus/content/repositories/public/</url> </repository> <repository> <id>spring-snapshot</id> <name>Spring Snapshot Repository</name> <url>http://repo.spring.io/snapshot/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>mule-plugin</id> <name>Mule Repository</name> <url>https://repository.mulesoft.org/nexus/content/repositories/public/</url> </pluginRepository> </pluginRepositories> </project>