File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -204,17 +204,15 @@ task allJavadoc(type: Javadoc, group: "Documentation") {
204
204
description = ' Generates a global API documentation for all the modules'
205
205
dependsOn(' :checker:shadowJar' )
206
206
dependsOn(' :util:tagletClasses' )
207
- doLast {
208
- source(project(' :checker' ). sourceSets. main. allJava, project(' :framework' ). sourceSets. main. allJava,
209
- project(' :dataflow' ). sourceSets. main. allJava, project(' :javacutil' ). sourceSets. main. allJava)
210
-
211
- classpath = files(subprojects. collect { it. sourceSets. main. compileClasspath })
212
- destinationDir = file(" ${ projectDir} /docs/api" )
213
- copy {
214
- from ' docs/logo/Checkmark/CFCheckmark_favicon.png'
215
- rename(' CFCheckmark_favicon.png' , ' favicon-checkerframework.png' )
216
- into ' docs/api/'
217
- }
207
+ destinationDir = file(" ${ rootDir} /docs/api" )
208
+ source(project(' :checker' ). sourceSets. main. allJava, project(' :framework' ). sourceSets. main. allJava,
209
+ project(' :dataflow' ). sourceSets. main. allJava, project(' :javacutil' ). sourceSets. main. allJava)
210
+
211
+ classpath = files(subprojects. collect { it. sourceSets. main. compileClasspath })
212
+ copy {
213
+ from ' docs/logo/Checkmark/CFCheckmark_favicon.png'
214
+ rename(' CFCheckmark_favicon.png' , ' favicon-checkerframework.png' )
215
+ into " ${ rootDir} /docs/api"
218
216
}
219
217
}
220
218
You can’t perform that action at this time.
0 commit comments