File tree 3 files changed +4
-3
lines changed 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 @@ -93,6 +93,7 @@ tasks.withType<Javadoc> {
93
93
// Gradle calls javadoc with a list of file and not a path. This prevents doc-files from being copied.
94
94
opt.addStringOption(" sourcepath" , project.projectDir.path + " /src/main/java" )
95
95
opt.docFilesSubDirs(true )
96
+ opt.addBooleanOption(" Xdoclint:-missing" , true )
96
97
97
98
doLast {
98
99
// 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