Generate Javadocs for BatchResponse and RecordType classes in the codes.thischwa.cf.model package.
Build and Analyse / build-and-analyse (push) Successful in 39s

This commit is contained in:
2026-06-28 18:20:39 +02:00
parent d4fba87e13
commit 25228af9f0
91 changed files with 15321 additions and 0 deletions
+29
View File
@@ -275,4 +275,33 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>javadoc</id>
<!-- mvn prepare-package -Pjavadoc -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>generate-javadoc</id>
<phase>prepare-package</phase>
<goals>
<goal>javadoc</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/docs</outputDirectory>
<sourcepath>${project.build.directory}/delombok</sourcepath>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>