Skip to content

Commit 3f3f809

Browse files
committed
Enable jupiter-starter to configure open-test-reporting snapshots
1 parent cbb95ec commit 3f3f809

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

platform-tooling-support-tests/projects/graalvm-starter/settings.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ dependencyResolutionManagement {
2828
snapshotsOnly()
2929
}
3030
}
31+
maven(url = "https://central.sonatype.com/repository/maven-snapshots/") {
32+
mavenContent {
33+
snapshotsOnly()
34+
includeGroup("org.opentest4j.reporting")
35+
}
36+
}
3137
}
3238
}
3339
}

platform-tooling-support-tests/projects/jupiter-starter/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ val junitVersion: String by project
77
repositories {
88
maven { url = uri(file(System.getProperty("maven.repo"))) }
99
mavenCentral()
10+
maven(url = "https://central.sonatype.com/repository/maven-snapshots/") {
11+
mavenContent {
12+
snapshotsOnly()
13+
includeGroup("org.opentest4j.reporting")
14+
}
15+
}
1016
}
1117

1218
dependencies {

0 commit comments

Comments
 (0)