56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|     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">
 | |
|     <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>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|             <version>${commons-lang3.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> |