Spring Web Services Starter and Sample Project
Fixes gh-412
This commit is contained in:
parent
b5d267ca89
commit
e2a449da97
|
@ -79,6 +79,8 @@
|
||||||
<jedis.version>2.4.1</jedis.version>
|
<jedis.version>2.4.1</jedis.version>
|
||||||
<jetty.version>8.1.15.v20140411</jetty.version>
|
<jetty.version>8.1.15.v20140411</jetty.version>
|
||||||
<jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version>
|
<jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version>
|
||||||
|
<jaxen.version>1.1.6</jaxen.version>
|
||||||
|
<jdom.version>2.0.1</jdom.version>
|
||||||
<joda-time.version>2.3</joda-time.version>
|
<joda-time.version>2.3</joda-time.version>
|
||||||
<jolokia.version>1.2.1</jolokia.version>
|
<jolokia.version>1.2.1</jolokia.version>
|
||||||
<jstl.version>1.2</jstl.version>
|
<jstl.version>1.2</jstl.version>
|
||||||
|
@ -109,6 +111,7 @@
|
||||||
<spring-social-linkedin.version>1.0.1.RELEASE</spring-social-linkedin.version>
|
<spring-social-linkedin.version>1.0.1.RELEASE</spring-social-linkedin.version>
|
||||||
<spring-security.version>3.2.4.RELEASE</spring-security.version>
|
<spring-security.version>3.2.4.RELEASE</spring-security.version>
|
||||||
<spring-security-jwt.version>1.0.2.RELEASE</spring-security-jwt.version>
|
<spring-security-jwt.version>1.0.2.RELEASE</spring-security-jwt.version>
|
||||||
|
<spring-ws.version>2.1.4.RELEASE</spring-ws.version>
|
||||||
<thymeleaf.version>2.1.3.RELEASE</thymeleaf.version>
|
<thymeleaf.version>2.1.3.RELEASE</thymeleaf.version>
|
||||||
<thymeleaf-extras-springsecurity3.version>2.1.1.RELEASE</thymeleaf-extras-springsecurity3.version>
|
<thymeleaf-extras-springsecurity3.version>2.1.1.RELEASE</thymeleaf-extras-springsecurity3.version>
|
||||||
<thymeleaf-layout-dialect.version>1.2.4</thymeleaf-layout-dialect.version>
|
<thymeleaf-layout-dialect.version>1.2.4</thymeleaf-layout-dialect.version>
|
||||||
|
@ -330,6 +333,11 @@
|
||||||
<artifactId>spring-boot-starter-websocket</artifactId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||||||
<version>1.1.0.BUILD-SNAPSHOT</version>
|
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-ws</artifactId>
|
||||||
|
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Third Party -->
|
<!-- Third Party -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -454,6 +462,11 @@
|
||||||
<artifactId>jstl</artifactId>
|
<artifactId>jstl</artifactId>
|
||||||
<version>${jstl.version}</version>
|
<version>${jstl.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>jaxen</groupId>
|
||||||
|
<artifactId>jaxen</artifactId>
|
||||||
|
<version>${jaxen.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>joda-time</groupId>
|
<groupId>joda-time</groupId>
|
||||||
<artifactId>joda-time</artifactId>
|
<artifactId>joda-time</artifactId>
|
||||||
|
@ -819,6 +832,11 @@
|
||||||
<artifactId>jolokia-core</artifactId>
|
<artifactId>jolokia-core</artifactId>
|
||||||
<version>${jolokia.version}</version>
|
<version>${jolokia.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jdom</groupId>
|
||||||
|
<artifactId>jdom</artifactId>
|
||||||
|
<version>${jdom.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.liquibase</groupId>
|
<groupId>org.liquibase</groupId>
|
||||||
<artifactId>liquibase-core</artifactId>
|
<artifactId>liquibase-core</artifactId>
|
||||||
|
@ -1048,6 +1066,80 @@
|
||||||
<artifactId>spring-social-web</artifactId>
|
<artifactId>spring-social-web</artifactId>
|
||||||
<version>${spring-social.version}</version>
|
<version>${spring-social.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.mobile</groupId>
|
||||||
|
<artifactId>spring-mobile-device</artifactId>
|
||||||
|
<version>${spring-mobile.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-core</artifactId>
|
||||||
|
<version>${spring-ws.version}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-support</artifactId>
|
||||||
|
<version>${spring-ws.version}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-security</artifactId>
|
||||||
|
<version>${spring-ws.version}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-test</artifactId>
|
||||||
|
<version>${spring-ws.version}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>wsdl4j</groupId>
|
||||||
|
<artifactId>wsdl4j</artifactId>
|
||||||
|
<version>1.6.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>xmlunit</groupId>
|
||||||
|
<artifactId>xmlunit</artifactId>
|
||||||
|
<version>1.5</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.thymeleaf</groupId>
|
||||||
|
<artifactId>thymeleaf</artifactId>
|
||||||
|
<version>${thymeleaf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.thymeleaf</groupId>
|
||||||
|
<artifactId>thymeleaf-spring4</artifactId>
|
||||||
|
<version>${thymeleaf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.thymeleaf.extras</groupId>
|
||||||
|
<artifactId>thymeleaf-extras-springsecurity3</artifactId>
|
||||||
|
<version>${thymeleaf-extras-springsecurity3.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.social</groupId>
|
<groupId>org.springframework.social</groupId>
|
||||||
<artifactId>spring-social-facebook</artifactId>
|
<artifactId>spring-social-facebook</artifactId>
|
||||||
|
@ -1068,21 +1160,6 @@
|
||||||
<artifactId>spring-social-linkedin</artifactId>
|
<artifactId>spring-social-linkedin</artifactId>
|
||||||
<version>${spring-social-linkedin.version}</version>
|
<version>${spring-social-linkedin.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.thymeleaf</groupId>
|
|
||||||
<artifactId>thymeleaf</artifactId>
|
|
||||||
<version>${thymeleaf.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.thymeleaf.extras</groupId>
|
|
||||||
<artifactId>thymeleaf-extras-springsecurity3</artifactId>
|
|
||||||
<version>${thymeleaf-extras-springsecurity3.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.thymeleaf</groupId>
|
|
||||||
<artifactId>thymeleaf-spring4</artifactId>
|
|
||||||
<version>${thymeleaf.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.yaml</groupId>
|
<groupId>org.yaml</groupId>
|
||||||
<artifactId>snakeyaml</artifactId>
|
<artifactId>snakeyaml</artifactId>
|
||||||
|
|
|
@ -57,7 +57,8 @@
|
||||||
<module>spring-boot-sample-web-velocity</module>
|
<module>spring-boot-sample-web-velocity</module>
|
||||||
<module>spring-boot-sample-websocket</module>
|
<module>spring-boot-sample-websocket</module>
|
||||||
<module>spring-boot-sample-xml</module>
|
<module>spring-boot-sample-xml</module>
|
||||||
</modules>
|
<module>spring-boot-sample-ws</module>
|
||||||
|
</modules>
|
||||||
<!-- No dependencies - otherwise the samples won't work if you change the
|
<!-- No dependencies - otherwise the samples won't work if you change the
|
||||||
parent -->
|
parent -->
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Spring Boot - Samples - Web Services
|
||||||
|
|
||||||
|
This sample project demonstrates how to bootstrap and use Spring Web Services with Spring Boot.
|
||||||
|
|
||||||
|
It is a runnable implementation of the HolidayRequest sample in the Spring Web Services [reference guide](http://docs.spring.io/spring-ws/site/reference/html/tutorial.html#tutorial.implementing.endpoint).
|
||||||
|
|
||||||
|
The sample can be build with Maven (>3) and simply run from the command line.
|
||||||
|
|
||||||
|
```
|
||||||
|
$ mvn package
|
||||||
|
$ java -jar target/*.jar
|
||||||
|
```
|
||||||
|
|
||||||
|
Now pointing your browser to [http://localhost:8080/services/holidayService/holiday.wsdl] should display the generated WSDL.
|
|
@ -0,0 +1,49 @@
|
||||||
|
<?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">
|
||||||
|
<parent>
|
||||||
|
<artifactId>spring-boot-samples</artifactId>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>spring-boot-sample-ws</artifactId>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<main.basedir>${basedir}/../..</main.basedir>
|
||||||
|
<java.version>1.7</java.version>
|
||||||
|
</properties>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-ws</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jdom</groupId>
|
||||||
|
<artifactId>jdom</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>jaxen</groupId>
|
||||||
|
<artifactId>jaxen</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
|
@ -0,0 +1,41 @@
|
||||||
|
package sample.ws;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||||
|
import org.springframework.boot.context.embedded.ServletRegistrationBean;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.context.annotation.ImportResource;
|
||||||
|
import org.springframework.ws.transport.http.MessageDispatcherServlet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by in329dei on 28-2-14.
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
@EnableAutoConfiguration
|
||||||
|
@ComponentScan
|
||||||
|
@ImportResource("classpath:/META-INF/spring/spring-ws-context.xml")
|
||||||
|
public class SampleWsApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) throws Exception {
|
||||||
|
SpringApplication.run(SampleWsApplication.class, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public ServletRegistrationBean messageDispatcherServletRegistration() {
|
||||||
|
MessageDispatcherServlet mds = new MessageDispatcherServlet();
|
||||||
|
mds.setTransformWsdlLocations(true);
|
||||||
|
|
||||||
|
ServletRegistrationBean srb = new ServletRegistrationBean(messageDispatcherServlet(), "/services/*");
|
||||||
|
srb.setLoadOnStartup(1);
|
||||||
|
return srb;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public MessageDispatcherServlet messageDispatcherServlet() {
|
||||||
|
MessageDispatcherServlet mds = new MessageDispatcherServlet();
|
||||||
|
mds.setTransformWsdlLocations(true);
|
||||||
|
return mds;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,58 @@
|
||||||
|
package sample.ws.endpoint;
|
||||||
|
|
||||||
|
import org.jdom2.Element;
|
||||||
|
import org.jdom2.JDOMException;
|
||||||
|
import org.jdom2.Namespace;
|
||||||
|
import org.jdom2.xpath.XPath;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.Endpoint;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.PayloadRoot;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.RequestPayload;
|
||||||
|
import sample.ws.service.HumanResourceService;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by in329dei on 28-2-14.
|
||||||
|
*/
|
||||||
|
@Endpoint
|
||||||
|
public class HolidayEndpoint {
|
||||||
|
|
||||||
|
private static final String NAMESPACE_URI = "http://mycompany.com/hr/schemas";
|
||||||
|
|
||||||
|
private XPath startDateExpression;
|
||||||
|
|
||||||
|
private XPath endDateExpression;
|
||||||
|
|
||||||
|
private XPath nameExpression;
|
||||||
|
|
||||||
|
private HumanResourceService humanResourceService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
public HolidayEndpoint(HumanResourceService humanResourceService) throws JDOMException
|
||||||
|
{
|
||||||
|
this.humanResourceService = humanResourceService;
|
||||||
|
|
||||||
|
Namespace namespace = Namespace.getNamespace("hr", NAMESPACE_URI);
|
||||||
|
|
||||||
|
startDateExpression = XPath.newInstance("//hr:StartDate");
|
||||||
|
startDateExpression.addNamespace(namespace);
|
||||||
|
|
||||||
|
endDateExpression = XPath.newInstance("//hr:EndDate");
|
||||||
|
endDateExpression.addNamespace(namespace);
|
||||||
|
|
||||||
|
nameExpression = XPath.newInstance("concat(//hr:FirstName,' ',//hr:LastName)");
|
||||||
|
nameExpression.addNamespace(namespace);
|
||||||
|
}
|
||||||
|
|
||||||
|
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "HolidayRequest")
|
||||||
|
public void handleHolidayRequest(@RequestPayload Element holidayRequest) throws Exception {
|
||||||
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
||||||
|
Date startDate = dateFormat.parse(startDateExpression.valueOf(holidayRequest));
|
||||||
|
Date endDate = dateFormat.parse(endDateExpression.valueOf(holidayRequest));
|
||||||
|
String name = nameExpression.valueOf(holidayRequest);
|
||||||
|
|
||||||
|
humanResourceService.bookHoliday(startDate, endDate, name);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
package sample.ws.service;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by in329dei on 28-2-14.
|
||||||
|
*/
|
||||||
|
public interface HumanResourceService {
|
||||||
|
void bookHoliday(Date startDate, Date endDate, String name);
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
package sample.ws.service;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by in329dei on 28-2-14.
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class StubHumanResourceService implements HumanResourceService {
|
||||||
|
|
||||||
|
private final Logger logger = LoggerFactory.getLogger(StubHumanResourceService.class);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void bookHoliday(Date startDate, Date endDate, String name) {
|
||||||
|
logger.info("Booking holiday for [{} - {}] for [{}] ", startDate, endDate, name);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||||
|
xmlns:hr="http://mycompany.com/hr/schemas"
|
||||||
|
elementFormDefault="qualified"
|
||||||
|
targetNamespace="http://mycompany.com/hr/schemas">
|
||||||
|
<xs:element name="HolidayRequest">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:all>
|
||||||
|
<xs:element name="Holiday" type="hr:HolidayType"/>
|
||||||
|
<xs:element name="Employee" type="hr:EmployeeType"/>
|
||||||
|
</xs:all>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:complexType name="HolidayType">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="StartDate" type="xs:date"/>
|
||||||
|
<xs:element name="EndDate" type="xs:date"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:complexType name="EmployeeType">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="Number" type="xs:integer"/>
|
||||||
|
<xs:element name="FirstName" type="xs:string"/>
|
||||||
|
<xs:element name="LastName" type="xs:string"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:schema>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns:sws="http://www.springframework.org/schema/web-services"
|
||||||
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services.xsd">
|
||||||
|
|
||||||
|
<sws:annotation-driven />
|
||||||
|
|
||||||
|
<sws:dynamic-wsdl id="holiday" portTypeName="HumanResource" locationUri="/holidayService/" targetNamespace="http://mycompany.com/hr/definitions">
|
||||||
|
<sws:xsd location="classpath:/META-INF/schemas/hr.xsd"/>
|
||||||
|
</sws:dynamic-wsdl>
|
||||||
|
|
||||||
|
</beans>
|
|
@ -54,6 +54,7 @@
|
||||||
<module>spring-boot-starter-velocity</module>
|
<module>spring-boot-starter-velocity</module>
|
||||||
<module>spring-boot-starter-web</module>
|
<module>spring-boot-starter-web</module>
|
||||||
<module>spring-boot-starter-websocket</module>
|
<module>spring-boot-starter-websocket</module>
|
||||||
|
<module>spring-boot-starter-ws</module>
|
||||||
</modules>
|
</modules>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
<?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">
|
||||||
|
<parent>
|
||||||
|
<artifactId>spring-boot-starters</artifactId>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>spring-boot-starter-ws</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
<properties>
|
||||||
|
<main.basedir>${basedir}/../..</main.basedir>
|
||||||
|
</properties>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>spring-boot-starter</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-core</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-support</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-security</artifactId>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.ws</groupId>
|
||||||
|
<artifactId>spring-ws-test</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
|
@ -0,0 +1 @@
|
||||||
|
provides: spring-ws-core,spring-ws-support,spring-ws-security
|
Loading…
Reference in New Issue