File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ configure(codeProjects) {
144
144
}
145
145
}
146
146
147
- def publishedCodeProjects = codeProjects. findAll { codeProject -> ! codeProject. name. contains(' spring-restdocs-asciidoctor' )}
147
+ def publishedCodeProjects = codeProjects. findAll { codeProject -> ! codeProject. name. contains(' spring-restdocs-asciidoctor- ' )}
148
148
configure(publishedCodeProjects) { subproject ->
149
149
javadoc {
150
150
description = " Generates project-level javadoc for use in -javadoc jar"
@@ -230,7 +230,8 @@ task api (type: Javadoc) {
230
230
options. links = javadocLinks
231
231
options. addStringOption ' -quiet'
232
232
233
- source publishedCodeProjects. collect { project -> project. sourceSets. main. allJava }
233
+ source publishedCodeProjects. findAll { ! it. name == ' spring-restdocs-asciidoctor' }
234
+ .collect { it. sourceSets. main. allJava }
234
235
235
236
destinationDir = new File (buildDir, " api" )
236
237
You can’t perform that action at this time.
0 commit comments