File tree Expand file tree Collapse file tree 2 files changed +0
-59
lines changed Expand file tree Collapse file tree 2 files changed +0
-59
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -246,31 +246,6 @@ spotless {
246246 }
247247}
248248
249- tasks.register(" aggregateJavadocs" , Javadoc ::class .java) {
250- setDestinationDir(project.layout.buildDirectory.file(" docs/javadoc" ).get().asFile)
251- title = " ${project.name} $version API"
252- val opts = options as StandardJavadocDocletOptions
253- opts.quiet()
254- opts.encoding = " UTF-8"
255- opts.memberLevel = JavadocMemberLevel .PROTECTED
256- opts.stylesheetFile(file(" $projectDir /docs/stylesheet.css" ))
257- opts.links = listOf (
258- " https://docs.oracle.com/javase/8/docs/api/" ,
259- " https://docs.spring.io/spring-framework/docs/current/javadoc-api/" ,
260- " https://docs.spring.io/spring-boot/docs/current/api/"
261- )
262- subprojects
263- .filter { ! it.name.contains(" sample" ) && ! it.name.contains(" integration-tests" ) }
264- .forEach { proj ->
265- proj.tasks.withType<Javadoc >().forEach { javadocTask ->
266- source + = javadocTask.source
267- classpath + = javadocTask.classpath
268- excludes + = javadocTask.excludes
269- includes + = javadocTask.includes
270- }
271- }
272- }
273-
274249tasks.register(" buildForCodeQL" ) {
275250 subprojects
276251 .filter {
You can’t perform that action at this time.
0 commit comments