Add a comment to the build.gradle.kts file

This commit is contained in:
Username404-59 2021-05-03 14:37:12 +02:00
parent aaa2366164
commit 0bae4655f9
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 10 additions and 0 deletions

View File

@ -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 {