Skip to content

Commit cf45417

Browse files
committed
Fix CI (follow-up to #443)
1 parent 3624010 commit cf45417

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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

buildSrc/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
*/
1919

2020
dependencies {
21-
implementation("org.ajoberstar.grgit:grgit-gradle:4.0.1")
21+
implementation("org.ajoberstar.grgit:grgit-gradle:5.0.0")
2222
}
2323

2424
repositories {
25-
maven("https://plugins.gradle.org/m2/")
25+
mavenCentral()
2626
}

java-client/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ tasks.withType<Javadoc> {
9393
// Gradle calls javadoc with a list of file and not a path. This prevents doc-files from being copied.
9494
opt.addStringOption("sourcepath", project.projectDir.path + "/src/main/java")
9595
opt.docFilesSubDirs(true)
96+
opt.addBooleanOption("Xdoclint:-missing", true)
9697

9798
doLast {
9899
// Javadoc adds its decoration to html doc files, including quite some JS. This slows down the api spec

0 commit comments

Comments
 (0)