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