Do not include spring-restdocs-asciidoctor in API documentation

Closes gh-391
This commit is contained in:
Andy Wilkinson
2017-04-26 12:10:16 +01:00
parent d6eacfd819
commit a5e3e153ad

View File

@@ -212,9 +212,8 @@ task api (type: Javadoc) {
options.links = javadocLinks
options.addStringOption '-quiet'
source subprojects.collect { project ->
project.sourceSets.main.allJava
}
source subprojects.findAll { project -> project.path != ":spring-restdocs-asciidoctor" }
.collect { project -> project.sourceSets.main.allJava }
destinationDir = new File(buildDir, "api")