Skip to content

Commit

Permalink
delombok for javadoc (#257)
Browse files Browse the repository at this point in the history
Co-authored-by: Lai Jiang <laijiang@amazon.com>
  • Loading branch information
wnbts and wnbts authored Jun 22, 2021
1 parent c380d79 commit 1b010f5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
</dependencyManagement>

<build>
<sourceDirectory>target/generated-sources/delombok</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -181,6 +182,24 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>1.18.20.0</version>
<executions>
<execution>
<id>delombok</id>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
<configuration>
<addOutputDirectory>false</addOutputDirectory>
<sourceDirectory>src/main/java</sourceDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 1b010f5

Please sign in to comment.