We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1401fa3 commit bc48984Copy full SHA for bc48984
instrumentation/oshi/library/build.gradle.kts
@@ -1,9 +1,13 @@
1
plugins {
2
id("otel.library-instrumentation")
3
+ id("com.google.osdetector")
4
}
5
6
+// 5.5.0 is the first version that works on arm mac
7
+val oshiVersion = if (osdetector.os == "osx" && osdetector.arch == "aarch_64") "5.5.0" else "5.3.1"
8
+
9
dependencies {
- library("com.github.oshi:oshi-core:5.3.1")
10
+ library("com.github.oshi:oshi-core:$oshiVersion")
11
12
testImplementation(project(":instrumentation:oshi:testing"))
13
0 commit comments