spring-boot/spring-boot-starters/spring-boot-starter-ws/pom.xml

40 lines
1.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2014-06-11 03:40:35 +08:00
<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">
2014-06-10 01:03:22 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
2014-06-10 01:03:22 +08:00
<artifactId>spring-boot-starters</artifactId>
2017-01-26 22:20:39 +08:00
<version>1.4.5.BUILD-SNAPSHOT</version>
</parent>
<artifactId>spring-boot-starter-ws</artifactId>
<name>spring-boot-starter-ws (DEPRECATED)</name>
<description>Starter for using Spring Web Services. Deprecated as of 1.4 in favor of
spring-boot-starter-web-services</description>
2014-06-10 01:03:22 +08:00
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>
<url>http://www.spring.io</url>
</organization>
<properties>
<main.basedir>${basedir}/../..</main.basedir>
</properties>
<dependencies>
<dependency>
2014-06-10 01:03:22 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
2014-06-10 01:03:22 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
2014-06-10 01:03:22 +08:00
<artifactId>spring-ws-core</artifactId>
</dependency>
</dependencies>
2014-06-11 03:40:35 +08:00
</project>