1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >core-java-lang-6</artifactId >
7+
8+ <parent >
9+ <groupId >com.baeldung.core-java-modules</groupId >
10+ <artifactId >core-java-modules</artifactId >
11+ <version >0.0.1-SNAPSHOT</version >
12+ </parent >
13+
14+ <dependencies >
15+ <dependency >
16+ <groupId >org.junit-pioneer</groupId >
17+ <artifactId >junit-pioneer</artifactId >
18+ <version >${junit.pioneer.version} </version >
19+ <scope >test</scope >
20+ </dependency >
21+ <dependency >
22+ <groupId >org.testcontainers</groupId >
23+ <artifactId >testcontainers</artifactId >
24+ <version >${testcontaienr.version} </version >
25+ <scope >test</scope >
26+ </dependency >
27+ <dependency >
28+ <groupId >org.testcontainers</groupId >
29+ <artifactId >junit-jupiter</artifactId >
30+ <version >${testcontaienr.version} </version >
31+ <scope >test</scope >
32+ </dependency >
33+
34+ </dependencies >
35+ <build >
36+ <plugins >
37+ <plugin >
38+ <groupId >org.apache.maven.plugins</groupId >
39+ <artifactId >maven-compiler-plugin</artifactId >
40+ <configuration >
41+ <annotationProcessorPaths >
42+ <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct-processor -->
43+ <path >
44+ <groupId >org.mapstruct</groupId >
45+ <artifactId >mapstruct-processor</artifactId >
46+ <version >${mapstruct.version} </version >
47+ </path >
48+ <path >
49+ <groupId >org.openjdk.jmh</groupId >
50+ <artifactId >jmh-generator-annprocess</artifactId >
51+ <version >${jmh.version} </version >
52+ </path >
53+ </annotationProcessorPaths >
54+ <source >14</source >
55+ <target >14</target >
56+ </configuration >
57+ </plugin >
58+ </plugins >
59+ </build >
60+
61+ <properties >
62+ <junit .pioneer.version>2.2.0</junit .pioneer.version>
63+ <testcontaienr .version>1.19.3</testcontaienr .version>
64+ </properties >
65+
66+ </project >
0 commit comments