From 51236f7a5997f6405427838932c072c73e49c0b5 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 20 Oct 2023 22:17:43 +0200 Subject: [PATCH] Let the fabric module really use Java 17 (#4231) * Let the fabric module really use java 17 * Remove unnecessary target/source compat; handled by indra instead --- bootstrap/fabric/build.gradle.kts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bootstrap/fabric/build.gradle.kts b/bootstrap/fabric/build.gradle.kts index e392a4ef9..07de70f60 100644 --- a/bootstrap/fabric/build.gradle.kts +++ b/bootstrap/fabric/build.gradle.kts @@ -5,9 +5,10 @@ plugins { id("com.modrinth.minotaur") version "2.+" } -java { - targetCompatibility = JavaVersion.VERSION_17 - sourceCompatibility = JavaVersion.VERSION_17 +indra { + javaVersions { + target(17) + } } dependencies {