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 20
20
# Build a Docker image that has Gradle and all project dependencies ready.
21
21
# Needs to be run with .git and java-client/src mounted under /elasticsearch-java.
22
22
23
- FROM openjdk:15
23
+ FROM openjdk:17
24
24
25
25
# Default UID/GID to 1000
26
26
# it can be overridden at build time
Original file line number Diff line number Diff line change 18
18
*/
19
19
20
20
dependencies {
21
- implementation(" org.ajoberstar.grgit:grgit-gradle:4 .0.1 " )
21
+ implementation(" org.ajoberstar.grgit:grgit-gradle:5 .0.0 " )
22
22
}
23
23
24
24
repositories {
25
- maven( " https://plugins.gradle.org/m2/ " )
25
+ mavenCentral( )
26
26
}
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ tasks.withType<Javadoc> {
89
89
// Gradle calls javadoc with a list of file and not a path. This prevents doc-files from being copied.
90
90
opt.addStringOption(" sourcepath" , project.projectDir.path + " /src/main/java" )
91
91
opt.docFilesSubDirs(true )
92
+ opt.addBooleanOption(" Xdoclint:-missing" , true )
92
93
93
94
doLast {
94
95
// 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