Skip to content

Commit b80fffa

Browse files
fix(deps): update dependency org.junit:junit-bom to v5.12.1 (#549)
* fix(deps): update dependency org.junit:junit-bom to v5.12.1 * increase timeout * add missing junit runtime dependency --------- Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com> Co-authored-by: Sylvain Juge <[email protected]>
1 parent f614100 commit b80fffa

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

buildSrc/src/main/kotlin/elastic-otel.java-conventions.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ dependencies {
3535
testImplementation(catalog.findLibrary("mockito").get())
3636
testImplementation(enforcedPlatform(catalog.findLibrary("junitBom").get()))
3737
testImplementation("org.junit.jupiter:junit-jupiter")
38+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3839
}
3940

4041
tasks {

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
shadow = "8.3.6"
33
jib = "3.4.4"
44
spotless = "7.0.2"
5-
junit = "5.11.4"
5+
junit = "5.12.1"
66
autoservice = "1.1.1"
77

88
# otel protocol (OTLP)

jvmti-access/jni-build/jni_linux_musl_x64.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV CROSS_TRIPLE x86_64-linux-musl
99
ENV CROSS_ROOT ${XCC_PREFIX}/${CROSS_TRIPLE}-cross
1010

1111
RUN mkdir -p ${XCC_PREFIX}
12-
RUN curl --max-time 60 --retry 5 -LO http://musl.cc/${CROSS_TRIPLE}-cross.tgz
12+
RUN curl --max-time 180 --retry 5 -LO http://musl.cc/${CROSS_TRIPLE}-cross.tgz
1313

1414
# Verify that the downloaded file has not been altered via sha256 checksum
1515
RUN test "$(sha256sum -b ${CROSS_TRIPLE}-cross.tgz)" = "c5d410d9f82a4f24c549fe5d24f988f85b2679b452413a9f7e5f7b956f2fe7ea *${CROSS_TRIPLE}-cross.tgz"

0 commit comments

Comments
 (0)