File tree Expand file tree Collapse file tree 1 file changed +29
-3
lines changed Expand file tree Collapse file tree 1 file changed +29
-3
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
3
<modelVersion >4.0.0</modelVersion >
6
4
7
5
<groupId >com.exceptionless</groupId >
121
119
<localCheckout >true</localCheckout >
122
120
<pushChanges >false</pushChanges >
123
121
<mavenExecutorId >forked-path</mavenExecutorId >
122
+ <arguments >-Dgpg.passphrase=${gpg.passphrase} </arguments >
124
123
</configuration >
125
124
<dependencies >
126
125
<dependency >
160
159
</execution >
161
160
</executions >
162
161
</plugin >
162
+ <!-- Added to use lombok with javadoc plugin-->
163
+ <plugin >
164
+ <groupId >org.projectlombok</groupId >
165
+ <artifactId >lombok-maven-plugin</artifactId >
166
+ <version >1.18.0.0</version >
167
+ <configuration >
168
+ <sourceDirectory >${project.basedir} /src/main/java</sourceDirectory >
169
+ <encoding >UTF-8</encoding >
170
+ <addOutputDirectory >false</addOutputDirectory >
171
+ </configuration >
172
+ <executions >
173
+ <execution >
174
+ <phase >generate-sources</phase >
175
+ <goals >
176
+ <goal >delombok</goal >
177
+ </goals >
178
+ </execution >
179
+ </executions >
180
+ </plugin >
181
+ <plugin >
182
+ <groupId >org.apache.maven.plugins</groupId >
183
+ <artifactId >maven-javadoc-plugin</artifactId >
184
+ <version >3.3.0</version >
185
+ <configuration >
186
+ <sourcepath >${project.build.directory} /generated-sources/delombok</sourcepath >
187
+ </configuration >
188
+ </plugin >
163
189
</plugins >
164
190
</build >
165
191
You can’t perform that action at this time.
0 commit comments