2020-09-09 12:35:31 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 08:31:55 -04: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">
|
2020-09-09 12:35:31 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-11-2</artifactId>
|
|
|
|
<name>core-java-11-2</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2021-12-03 06:50:12 -05:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2020-09-09 12:35:31 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-09-12 03:44:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
</dependency>
|
2021-01-02 06:08:15 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
<artifactId>mockserver-junit-jupiter</artifactId>
|
|
|
|
<version>${mockserver.version}</version>
|
|
|
|
</dependency>
|
2021-05-05 01:20:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
|
</dependency>
|
2021-06-13 18:04:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.ws</groupId>
|
|
|
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
|
|
|
<version>${jakarta.ws-api.version}</version>
|
|
|
|
</dependency>
|
2020-09-09 12:35:31 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${maven.compiler.source.version}</source>
|
|
|
|
<target>${maven.compiler.target.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-06-13 18:04:40 -04:00
|
|
|
<!-- jax-ws maven plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.sun.xml.ws</groupId>
|
|
|
|
<artifactId>jaxws-maven-plugin</artifactId>
|
|
|
|
<version>${jaxws-maven-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<wsdlUrls>
|
|
|
|
<wsdlUrl>http://localhost:8888/ws/country?wsdl</wsdlUrl>
|
|
|
|
</wsdlUrls>
|
|
|
|
<keep>true</keep>
|
|
|
|
<packageName>com.baeldung.soap.ws.client.generated</packageName>
|
|
|
|
<sourceDestDir>src/main/java</sourceDestDir>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-09-09 12:35:31 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source.version>11</maven.compiler.source.version>
|
|
|
|
<maven.compiler.target.version>11</maven.compiler.target.version>
|
2021-01-02 06:08:15 -05:00
|
|
|
<mockserver.version>5.11.1</mockserver.version>
|
2021-12-03 23:30:10 -05:00
|
|
|
<jakarta.ws-api.version>3.0.1</jakarta.ws-api.version>
|
|
|
|
<jaxws-maven-plugin.version>3.0.2</jaxws-maven-plugin.version>
|
2020-09-09 12:35:31 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-06 08:31:55 -04:00
|
|
|
</project>
|