Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion products/feature-flagging/api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import datadog.gradle.plugin.testJvmConstraints.TestJvmConstraintsExtension
import de.thetaphi.forbiddenapis.gradle.CheckForbiddenApis
import groovy.lang.Closure

Expand All @@ -10,7 +11,9 @@ plugins {
apply(from = "$rootDir/gradle/java.gradle")
apply(from = "$rootDir/gradle/publish.gradle")

val minJavaVersionForTests by extra(JavaVersion.VERSION_11)
configure<TestJvmConstraintsExtension> {
minJavaVersion.set(JavaVersion.VERSION_11)
}

description = "Implementation of the OpenFeature Provider interface."

Expand Down
Loading