File tree Expand file tree Collapse file tree 5 files changed +35
-0
lines changed Expand file tree Collapse file tree 5 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 77
77
<groupId >org.apache.maven.plugins</groupId >
78
78
<artifactId >maven-javadoc-plugin</artifactId >
79
79
</plugin >
80
+ <plugin >
81
+ <groupId >org.projectlombok</groupId >
82
+ <artifactId >lombok-maven-plugin</artifactId >
83
+ </plugin >
80
84
</plugins >
81
85
</build >
82
86
</project >
Original file line number Diff line number Diff line change 36
36
<groupId >org.apache.maven.plugins</groupId >
37
37
<artifactId >maven-javadoc-plugin</artifactId >
38
38
</plugin >
39
+ <plugin >
40
+ <groupId >org.projectlombok</groupId >
41
+ <artifactId >lombok-maven-plugin</artifactId >
42
+ </plugin >
39
43
</plugins >
40
44
</build >
41
45
</project >
Original file line number Diff line number Diff line change 40
40
<groupId >org.apache.maven.plugins</groupId >
41
41
<artifactId >maven-javadoc-plugin</artifactId >
42
42
</plugin >
43
+ <plugin >
44
+ <groupId >org.projectlombok</groupId >
45
+ <artifactId >lombok-maven-plugin</artifactId >
46
+ </plugin >
43
47
</plugins >
44
48
</build >
45
49
</project >
Original file line number Diff line number Diff line change 92
92
<groupId >org.apache.maven.plugins</groupId >
93
93
<artifactId >maven-javadoc-plugin</artifactId >
94
94
</plugin >
95
+ <plugin >
96
+ <groupId >org.projectlombok</groupId >
97
+ <artifactId >lombok-maven-plugin</artifactId >
98
+ </plugin >
95
99
</plugins >
96
100
</build >
97
101
</project >
Original file line number Diff line number Diff line change 160
160
</executions >
161
161
<configuration >
162
162
<doclint >none</doclint >
163
+ <sourcepath >${project.build.directory} /generated-sources/delombok</sourcepath >
163
164
</configuration >
164
165
</plugin >
166
+ <plugin >
167
+ <groupId >org.projectlombok</groupId >
168
+ <artifactId >lombok-maven-plugin</artifactId >
169
+ <version >1.18.20.0</version >
170
+ <executions >
171
+ <execution >
172
+ <phase >generate-sources</phase >
173
+ <goals >
174
+ <goal >delombok</goal >
175
+ </goals >
176
+ <configuration >
177
+ <addOutputDirectory >false</addOutputDirectory >
178
+ <sourceDirectory >src/main/java</sourceDirectory >
179
+ <outputDirectory >${project.build.directory} /generated-sources/delombok</outputDirectory >
180
+ </configuration >
181
+ </execution >
182
+ </executions >
183
+ </plugin >
165
184
</plugins >
166
185
</pluginManagement >
167
186
<plugins >
You can’t perform that action at this time.
0 commit comments