File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2020# Build a Docker image that has Gradle and all project dependencies ready.
2121# Needs to be run with .git and java-client/src mounted under /elasticsearch-java.
2222
23- FROM openjdk:15
23+ FROM openjdk:17
2424
2525# Default UID/GID to 1000
2626# it can be overridden at build time
Original file line number Diff line number Diff line change 1818 */
1919
2020dependencies {
21- implementation(" org.ajoberstar.grgit:grgit-gradle:4 .0.1 " )
21+ implementation(" org.ajoberstar.grgit:grgit-gradle:5 .0.0 " )
2222}
2323
2424repositories {
25- maven( " https://plugins.gradle.org/m2/ " )
25+ mavenCentral( )
2626}
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ tasks.withType<Javadoc> {
8989 // Gradle calls javadoc with a list of file and not a path. This prevents doc-files from being copied.
9090 opt.addStringOption(" sourcepath" , project.projectDir.path + " /src/main/java" )
9191 opt.docFilesSubDirs(true )
92+ opt.addBooleanOption(" Xdoclint:-missing" , true )
9293
9394 doLast {
9495 // Javadoc adds its decoration to html doc files, including quite some JS. This slows down the api spec
You can’t perform that action at this time.
0 commit comments