| 
									
										
										
										
											2023-07-13 22:29:37 +03:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
					
						
							| 
									
										
										
										
											2023-08-28 20:58:01 +05:30
										 |  |  |     xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							|  |  |  |     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
					
						
							| 
									
										
										
										
											2023-07-13 22:29:37 +03:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung.core-java-modules</groupId> | 
					
						
							|  |  |  |         <artifactId>core-java-modules</artifactId> | 
					
						
							|  |  |  |         <version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <artifactId>core-java-lang-6</artifactId> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct --> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.mapstruct</groupId> | 
					
						
							|  |  |  |             <artifactId>mapstruct</artifactId> | 
					
						
							|  |  |  |             <version>${mapstruct.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							|  |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                 <version>3.5.1</version> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <source>17</source> | 
					
						
							|  |  |  |                     <target>17</target> | 
					
						
							|  |  |  |                     <annotationProcessorPaths> | 
					
						
							|  |  |  |                         <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct-processor --> | 
					
						
							|  |  |  |                         <path> | 
					
						
							|  |  |  |                             <groupId>org.mapstruct</groupId> | 
					
						
							|  |  |  |                             <artifactId>mapstruct-processor</artifactId> | 
					
						
							|  |  |  |                             <version>${mapstruct.version}</version> | 
					
						
							|  |  |  |                         </path> | 
					
						
							|  |  |  |                     </annotationProcessorPaths> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							|  |  |  |         <maven.compiler.source>17</maven.compiler.source> | 
					
						
							|  |  |  |         <maven.compiler.target>17</maven.compiler.target> | 
					
						
							|  |  |  |         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							|  |  |  |         <mapstruct.version>1.5.5.Final</mapstruct.version> | 
					
						
							|  |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |