From 0bae4655f9ce79845266deebf9618f1aae250543 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Mon, 3 May 2021 14:37:12 +0200 Subject: [PATCH] Add a comment to the build.gradle.kts file --- build.gradle.kts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 4e6fd8a..4445598 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -91,6 +91,16 @@ subprojects { val kotlinVer = rootProject.property("kotlin_stdlib_version").toString() + ".0" val mcBase: String = rootProject.architectury.minecraft.dropLast(2) allprojects { + /** configurations.all { + resolutionStrategy { + eachDependency { + if (requested.group == "org.jetbrains.kotlin" && requested.name.contains("stdlib") && (requested.version != kotlinVer)) { + useVersion(kotlinVer) + } + } + } + } + **/ apply(plugin = "java") apply(plugin = "architectury-plugin") dependencies {