39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<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">
|
|
<parent>
|
|
<artifactId>pox</artifactId>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<version>2.0.1.RELEASE-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>pox-server</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>Spring WS POX Sample - Server</name>
|
|
<description>A Spring-WS sample that uses Plain Old XML, rather than SOAP.</description>
|
|
<profiles>
|
|
<profile>
|
|
<id>jdk14-jdk15</id>
|
|
<activation>
|
|
<jdk>!1.6</jdk>
|
|
</activation>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.xml.stream</groupId>
|
|
<artifactId>stax-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</profile>
|
|
</profiles>
|
|
<dependencies>
|
|
<!-- Spring-WS dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-ws-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-xml</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|