2019-05-19 14:58:17 +00:00
|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.1.5.RELEASE</version>
|
|
|
|
<relativePath /> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
<groupId>com.manalejandro</groupId>
|
|
|
|
<artifactId>ws</artifactId>
|
|
|
|
<version>0.0.1</version>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>ws</name>
|
|
|
|
<description>Demo project for Spring Boot with Web Services</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>11</java.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>wsdl4j</groupId>
|
|
|
|
<artifactId>wsdl4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-05-19 21:00:44 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<!-- Plugin for generate WS classes -->
|
2019-05-19 14:58:17 +00:00
|
|
|
<!-- <plugin> -->
|
|
|
|
<!-- <groupId>org.codehaus.mojo</groupId> -->
|
|
|
|
<!-- <artifactId>jaxb2-maven-plugin</artifactId> -->
|
|
|
|
<!-- <version>2.4</version> -->
|
|
|
|
<!-- <executions> -->
|
|
|
|
<!-- <execution> -->
|
|
|
|
<!-- <goals> -->
|
|
|
|
<!-- <goal>xjc</goal> -->
|
|
|
|
<!-- </goals> -->
|
|
|
|
<!-- </execution> -->
|
|
|
|
<!-- </executions> -->
|
|
|
|
<!-- <configuration> -->
|
|
|
|
<!-- <sources> -->
|
|
|
|
<!-- <source>src/main/resources/person.xsd</source> -->
|
|
|
|
<!-- </sources> -->
|
|
|
|
<!-- <packageName>com.manalejandro.ws.model</packageName> -->
|
2019-05-19 21:00:44 +00:00
|
|
|
<!-- <outputDirectory>${project.basedir}/src/main/java</outputDirectory> -->
|
|
|
|
<!-- <clearOutputDir>false</clearOutputDir> -->
|
2019-05-19 14:58:17 +00:00
|
|
|
<!-- </configuration> -->
|
|
|
|
<!-- </plugin> -->
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|