We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3c78e0 commit 554d574Copy full SHA for 554d574
instrumentation/oshi/library/build.gradle.kts
@@ -6,10 +6,10 @@ plugins {
6
dependencies {
7
library("com.github.oshi:oshi-core:5.3.1")
8
9
- if (osdetector.os == "osx" && osdetector.arch == "aarch_64" && !(findProperty("testLatestDeps") as Boolean)) {
10
- // 5.5.0 is the first version that works on arm mac
11
- configurations.testRuntimeClasspath.get().resolutionStrategy.force("com.github.oshi:oshi-core:5.5.0")
12
- }
13
-
14
testImplementation(project(":instrumentation:oshi:testing"))
15
}
+
+if (osdetector.os == "osx" && osdetector.arch == "aarch_64" && !(findProperty("testLatestDeps") as Boolean)) {
+ // 5.5.0 is the first version that works on arm mac
+ configurations.testRuntimeClasspath.get().resolutionStrategy.force("com.github.oshi:oshi-core:5.5.0")
+}
0 commit comments