Skip to content

Commit

Permalink
Fixed workbook module javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cgendreau committed Oct 24, 2024
1 parent 48c9559 commit 7906f4b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions dina-workbook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,44 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
<configuration>
<sourceDirectory>src/main/java</sourceDirectory>
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
<addOutputDirectory>false</addOutputDirectory>
</configuration>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<sourcepath>${project.build.directory}/delombok</sourcepath>
</configuration>
</plugin>
</plugins>
</build>


<licenses>
<license>
<name>MIT License</name>
Expand Down

0 comments on commit 7906f4b

Please sign in to comment.