Skip to content

Commit

Permalink
Fix CI (follow-up to #443)
Browse files Browse the repository at this point in the history
  • Loading branch information
swallez committed Nov 8, 2022
1 parent 3624010 commit cf45417
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Build a Docker image that has Gradle and all project dependencies ready.
# Needs to be run with .git and java-client/src mounted under /elasticsearch-java.

FROM openjdk:15
FROM openjdk:17

# Default UID/GID to 1000
# it can be overridden at build time
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
*/

dependencies {
implementation("org.ajoberstar.grgit:grgit-gradle:4.0.1")
implementation("org.ajoberstar.grgit:grgit-gradle:5.0.0")
}

repositories {
maven("https://plugins.gradle.org/m2/")
mavenCentral()
}
1 change: 1 addition & 0 deletions java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ tasks.withType<Javadoc> {
// Gradle calls javadoc with a list of file and not a path. This prevents doc-files from being copied.
opt.addStringOption("sourcepath", project.projectDir.path + "/src/main/java")
opt.docFilesSubDirs(true)
opt.addBooleanOption("Xdoclint:-missing", true)

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

0 comments on commit cf45417

Please sign in to comment.