Add a comment to the build.gradle.kts file
This commit is contained in:
parent
aaa2366164
commit
0bae4655f9
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue