99 lines
3.1 KiB
XML
99 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-ws</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Spring Integration Web Services Support</name>
|
|
<parent>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-parent</artifactId>
|
|
<version>1.0.4.RELEASE</version>
|
|
<relativePath>../spring-integration-parent</relativePath>
|
|
</parent>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.sun.xml.messaging.saaj</groupId>
|
|
<artifactId>saaj-impl</artifactId>
|
|
<version>1.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.soap</groupId>
|
|
<artifactId>saaj-api</artifactId>
|
|
<version>1.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>stax</groupId>
|
|
<artifactId>stax</artifactId>
|
|
<version>1.2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-adapter</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-oxm</artifactId>
|
|
<version>1.5.9</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-ws-core</artifactId>
|
|
<version>1.5.9</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.4</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>2.5.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>1.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>2.5.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>src/test/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xsd</include>
|
|
</includes>
|
|
</testResource>
|
|
|
|
<testResource>
|
|
<directory>../org.springframework.integration/src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xsd</include>
|
|
</includes>
|
|
</testResource>
|
|
</testResources>
|
|
</build>
|
|
</project> |