76 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.9 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>
 | |
|     <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>
 | |
|         <relativePath>../../pom.xml</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.google.guava</groupId>
 | |
|             <artifactId>guava</artifactId>
 | |
|             <version>${guava.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.mock-server</groupId>
 | |
|             <artifactId>mockserver-junit-jupiter</artifactId>
 | |
|             <version>${mockserver.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|             <version>${commons-lang3.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>jakarta.xml.ws</groupId>
 | |
|             <artifactId>jakarta.xml.ws-api</artifactId>
 | |
|             <version>${jakarta.ws-api.version}</version>
 | |
|         </dependency>
 | |
|     </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>
 | |
|             <!-- 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>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <maven.compiler.source.version>11</maven.compiler.source.version>
 | |
|         <maven.compiler.target.version>11</maven.compiler.target.version>
 | |
|         <mockserver.version>5.11.1</mockserver.version>
 | |
|         <jakarta.ws-api.version>3.0.1</jakarta.ws-api.version>
 | |
|         <jaxws-maven-plugin.version>3.0.2</jaxws-maven-plugin.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |