120 lines
3.5 KiB
XML
120 lines
3.5 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-ws</artifactId>
|
|
<version>3.0.0.RELEASE</version>
|
|
</parent>
|
|
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-ws-support</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>Spring WS Support</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-xml</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-ws-core</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jms</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.jms</groupId>
|
|
<artifactId>javax.jms-api</artifactId>
|
|
<version>${jms.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>javax.mail-api</artifactId>
|
|
<version>${javax-mail.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
<version>${sun-mail.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-tcp</artifactId>
|
|
<version>${smack.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-java7</artifactId>
|
|
<version>${smack.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!--optional("org.igniterealtime.smack:smack-extensions:$smackVersion")-->
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-extensions</artifactId>
|
|
<version>${smack.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!--testCompile("commons-httpclient:commons-httpclient:$commonsHttpclientVersion")-->
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>${commons-httpclient.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!--testRuntime("org.apache.activemq:activemq-core:4.1.2") {-->
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-core</artifactId>
|
|
<version>${activemq.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jvnet.mock-javamail</groupId>
|
|
<artifactId>mock-javamail</artifactId>
|
|
<version>${mock-javamail.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>mail</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |