Don't include benchmarks and tests in the generated javadocs

Motivation:

We shouldn't include benchmarks and tests in the generated javadocs to keep things clean

Modifications:

Add some more excludes

Result:

Javadocs for benchmarks and tests are not published
This commit is contained in:
Norman Maurer 2021-05-19 16:26:52 +02:00
parent f0c919768b
commit 98beacf215

View File

@ -95,6 +95,9 @@
<exclude>**/microbench/**/*.java</exclude>
<exclude>**/microbenchmark/**/*.java</exclude>
<exclude>**/generated/**/*.java</exclude>
<exclude>**/*Benchmark.java</exclude>
<exclude>**/*Bench.java</exclude>
<exclude>**/*Test.java</exclude>
</sourceFileExcludes>
<docfilessubdirs>true</docfilessubdirs>
<outputDirectory>${project.build.directory}/api</outputDirectory>