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 8a93623 commit d034e97Copy full SHA for d034e97
products/feature-flagging/api/build.gradle.kts
@@ -1,3 +1,4 @@
1
+import datadog.gradle.plugin.testJvmConstraints.TestJvmConstraintsExtension
2
import de.thetaphi.forbiddenapis.gradle.CheckForbiddenApis
3
import groovy.lang.Closure
4
@@ -10,7 +11,9 @@ plugins {
10
11
apply(from = "$rootDir/gradle/java.gradle")
12
apply(from = "$rootDir/gradle/publish.gradle")
13
-val minJavaVersionForTests by extra(JavaVersion.VERSION_11)
14
+configure<TestJvmConstraintsExtension> {
15
+ minJavaVersion.set(JavaVersion.VERSION_11)
16
+}
17
18
description = "Implementation of the OpenFeature Provider interface."
19
0 commit comments