We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b46c91 commit efc8639Copy full SHA for efc8639
build.gradle
@@ -749,9 +749,9 @@ task api(type: Javadoc) {
749
options.addStringOption('Xdoclint:none', '-quiet')
750
}
751
752
- source subprojects.collect { project ->
753
- project.sourceSets.main.allJava
754
- }
+ source subprojects
+ .findAll { it.name != 'spring-batch-samples' && !it.name.endsWith("-tests") }
+ .collect { project -> project.sourceSets.main.allJava }
755
destinationDir = new File(buildDir, "api")
756
classpath = files(subprojects.collect { project ->
757
project.sourceSets.main.compileClasspath
0 commit comments