ws/pom.xml

98 lines
2.9 KiB
XML
Raw Normal View History

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>
2019-05-19 21:29:48 +00:00
<!-- https://github.com/eclipse-ee4j/jaxb-ri/issues/1235 -->
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.activation/activation -->
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
2019-05-19 14:58:17 +00:00
</dependencies>
<build>
<plugins>
2019-05-19 21:00:44 +00:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
2019-05-19 21:29:48 +00:00
<!-- Plugin for generate WS classes -->
<!-- <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> -->
<!-- <outputDirectory>${project.basedir}/src/main/java</outputDirectory> -->
<!-- <clearOutputDir>false</clearOutputDir> -->
<!-- </configuration> -->
<!-- </plugin> -->
2019-05-19 14:58:17 +00:00
</plugins>
</build>
</project>