build: Rename all Gradle build logic modules to build-logic
This commit is contained in:
@@ -7,7 +7,7 @@ plugins {
|
|||||||
group = "de.siphalor.tweed5"
|
group = "de.siphalor.tweed5"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":tweed5-conventions-helpers"))
|
implementation(project(":tweed5-build-logic-helpers"))
|
||||||
implementation(pluginMarker(libs.plugins.lombok))
|
implementation(pluginMarker(libs.plugins.lombok))
|
||||||
implementation(pluginMarker(libs.plugins.shadow))
|
implementation(pluginMarker(libs.plugins.shadow))
|
||||||
}
|
}
|
||||||
@@ -17,7 +17,7 @@ dependencyResolutionManagement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
include(":tweed5-conventions-helpers")
|
include(":tweed5-build-logic-helpers")
|
||||||
project(":tweed5-conventions-helpers").projectDir = file("helpers")
|
project(":tweed5-build-logic-helpers").projectDir = file("helpers")
|
||||||
|
|
||||||
rootProject.name = "tweed5-conventions"
|
rootProject.name = "tweed5-build-logic"
|
||||||
+2
-2
@@ -5,8 +5,8 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("de.siphalor.tweed5:tweed5-conventions")
|
implementation("de.siphalor.tweed5:tweed5-build-logic")
|
||||||
implementation("de.siphalor.tweed5:tweed5-conventions-helpers")
|
implementation("de.siphalor.tweed5:tweed5-build-logic-helpers")
|
||||||
implementation(pluginMarker(mcCommonLibs.plugins.smcmtk))
|
implementation(pluginMarker(mcCommonLibs.plugins.smcmtk))
|
||||||
implementation(pluginMarker(mcCommonLibs.plugins.jcyo))
|
implementation(pluginMarker(mcCommonLibs.plugins.jcyo))
|
||||||
implementation(pluginMarker(mcLibs.plugins.fabric.loom))
|
implementation(pluginMarker(mcLibs.plugins.fabric.loom))
|
||||||
+2
-2
@@ -27,6 +27,6 @@ dependencyResolutionManagement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
includeBuild("../../conventions")
|
includeBuild("../../build-logic")
|
||||||
|
|
||||||
rootProject.name = "tweed5-minecraft-conventions"
|
rootProject.name = "tweed5-minecraft-build-logic"
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
org.gradle.jvmargs = -Xmx2G
|
org.gradle.jvmargs = -Xmx2G
|
||||||
org.gradle.configuration-cache = true
|
org.gradle.configuration-cache = true
|
||||||
|
|
||||||
minecraft.version.descriptor = 1.16.5
|
minecraft.version.descriptor = 26.2.0
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
rootProject.name = "tweed5-minecraft"
|
rootProject.name = "tweed5-minecraft"
|
||||||
|
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
includeBuild("../conventions")
|
includeBuild("../build-logic")
|
||||||
|
includeBuild("build-logic") {
|
||||||
|
name = "minecraft-build-logic"
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
rootProject.name = "tweed5"
|
rootProject.name = "tweed5"
|
||||||
|
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
includeBuild("../conventions")
|
includeBuild("../build-logic")
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
|
|||||||
Reference in New Issue
Block a user