Skip to content

Commit 8eee564

Browse files
committed
For #604. Add helpful comments
1 parent 66e924f commit 8eee564

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ java {
105105
toolchain {
106106
languageVersion.set(JavaLanguageVersion.of("$jdkVersion"))
107107
}
108-
withJavadocJar()
108+
withJavadocJar() // Javadoc for "main" source code
109+
// More configuration needed for "test" or "integrationTest" source code
109110
}
110111

111112
tasks.withType(JavaCompile) {

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,8 +458,9 @@
458458
<id>javadoc-jars</id>
459459
<phase>package</phase>
460460
<goals>
461-
<goal>jar</goal>
462-
<goal>test-jar</goal>
461+
<goal>jar</goal> <!-- Javadoc for "main" source code -->
462+
<goal>test-jar</goal> <!-- Javadoc for "test" source code -->
463+
<!-- More configuration needed for "integrationTest" source code -->
463464
</goals>
464465
</execution>
465466
</executions>

0 commit comments

Comments
 (0)