File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?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" >
53 <modelVersion >4.0.0</modelVersion >
64
75 <groupId >com.exceptionless</groupId >
121119 <localCheckout >true</localCheckout >
122120 <pushChanges >false</pushChanges >
123121 <mavenExecutorId >forked-path</mavenExecutorId >
122+ <arguments >-Dgpg.passphrase=${gpg.passphrase} </arguments >
124123 </configuration >
125124 <dependencies >
126125 <dependency >
160159 </execution >
161160 </executions >
162161 </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 >
163189 </plugins >
164190 </build >
165191
You can’t perform that action at this time.
0 commit comments