73 lines
2.1 KiB
XML
73 lines
2.1 KiB
XML
<?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>
|
|
<!-- <plugin> -->
|
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId> -->
|
|
<!-- </plugin> -->
|
|
<!-- <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> -->
|
|
<!-- </configuration> -->
|
|
<!-- </plugin> -->
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|