| 
									
										
										
										
											2020-09-09 18:35:31 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							| 
									
										
										
										
											2021-05-06 18:01:55 +05:30
										 |  |  | <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 18:35:31 +02:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <artifactId>core-java-11-2</artifactId> | 
					
						
							|  |  |  |     <packaging>jar</packaging> | 
					
						
							| 
									
										
										
										
											2024-03-15 21:27:32 +05:30
										 |  |  |     <name>core-java-11-2</name> | 
					
						
							| 
									
										
										
										
											2020-09-09 18:35:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							| 
									
										
										
										
											2021-12-03 17:20:12 +05:30
										 |  |  |         <relativePath>../../pom.xml</relativePath> | 
					
						
							| 
									
										
										
										
											2020-09-09 18:35:31 +02:00
										 |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							| 
									
										
										
										
											2021-01-02 12:08:15 +01:00
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.mock-server</groupId> | 
					
						
							|  |  |  |             <artifactId>mockserver-junit-jupiter</artifactId> | 
					
						
							|  |  |  |             <version>${mockserver.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2021-05-05 09:50:45 +04:30
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |             <artifactId>commons-lang3</artifactId> | 
					
						
							|  |  |  |             <version>${commons-lang3.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2021-06-14 03:34:40 +05:30
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>jakarta.xml.ws</groupId> | 
					
						
							|  |  |  |             <artifactId>jakarta.xml.ws-api</artifactId> | 
					
						
							|  |  |  |             <version>${jakarta.ws-api.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2020-09-09 18:35:31 +02: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-14 03:34:40 +05:30
										 |  |  |             <!-- 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 18:35:31 +02: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 12:08:15 +01:00
										 |  |  |         <mockserver.version>5.11.1</mockserver.version> | 
					
						
							| 
									
										
										
										
											2021-12-04 10:00:10 +05:30
										 |  |  |         <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 18:35:31 +02:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:01:55 +05:30
										 |  |  | </project> |