File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,10 @@ tasks.register<Javadoc>("javadocs") {
5454 setDestinationDir(project.file(" /build/outputs/javadoc" ))
5555 title = " ${project.ext.get(" plugin_display_name" )} ${project.ext.get(" plugin_version" )} API"
5656 source = sourceSets.getByName(" main" ).java
57+
5758 classpath = files(File (System .getProperty(" java.home" ) + File .separator + " lib" + File .separator + " rt.jar" ))
58- classpath + = configurations.getByName(" implementation" )
59+ @Suppress(" UnstableApiUsage" )
60+ classpath + = files(configurations.runtimeClasspath.filter { it.name.endsWith(" jar" ) }.map { zipTree(it) })
5961 // options.links = "https://docs.oracle.com/en/java/javase/17/docs/api/"
6062 // options.linkSource = true
6163 // options.author = true
Original file line number Diff line number Diff line change 11[versions ]
22android_gradle = " 8.11.0"
33gradle_publish = " 1.3.1"
4- plugin_version = " 1.3.7 "
4+ plugin_version = " 1.4.0 "
55annotations = " 26.0.2"
66httpcore = " 4.4.16"
77httpclient = " 4.5.14"
Original file line number Diff line number Diff line change 22jdk :
33 - openjdk17
44before_install :
5- - sdk install java 17.0.14 -amzn
6- - sdk use java 17.0.14 -amzn
5+ - sdk install java 17.0.15 -amzn
6+ - sdk use java 17.0.15 -amzn
You can’t perform that action at this time.
0 commit comments