45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<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>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-xml</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Spring Integration XML Support</name>
|
|
<version>1.0.2.RELEASE</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.activation</groupId>
|
|
<artifactId>activation</artifactId>
|
|
<!-- spring source repository has 1.1.1 but not in repo1 -->
|
|
<version>1.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<!-- spring source repository has 2.1.7 -->
|
|
<version>2.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-xml</artifactId>
|
|
<version>${spring.ws.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-oxm</artifactId>
|
|
<version>${spring.ws.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<spring.ws.version>1.5.5</spring.ws.version>
|
|
</properties>
|
|
|
|
</project> |