We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68b0bf commit 5528fe8Copy full SHA for 5528fe8
build.gradle
@@ -10,6 +10,13 @@ plugins {
10
id "io.morethan.jmhreport" apply false
11
}
12
13
+if (!JavaVersion.current().isJava11Compatible()) {
14
+ throw new GradleException("JDK 11 or higher is required to build. " +
15
+ "One option is to download it from https://adoptopenjdk.net/. If you believe you already " +
16
+ "have it, please check that the JAVA_HOME environment variable is pointing at the " +
17
+ "JDK 11 installation.")
18
+}
19
+
20
ext {
21
opentelemetryProjects = subprojects - project(":opentelemetry-bom")
22
0 commit comments