2023-09-02 00:50:36 +08:00
|
|
|
plugins {
|
2024-08-18 17:46:46 +08:00
|
|
|
id 'fabric-loom' version '1.6-SNAPSHOT'
|
2023-09-02 00:50:36 +08:00
|
|
|
id 'maven-publish'
|
|
|
|
}
|
|
|
|
|
|
|
|
version = project.mod_version
|
|
|
|
group = project.maven_group
|
2023-09-07 21:37:56 +08:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2024-08-18 17:46:46 +08:00
|
|
|
maven { url 'https://maven.nucleoid.xyz/' }
|
2023-09-07 21:37:56 +08:00
|
|
|
}
|
2023-09-02 00:50:36 +08:00
|
|
|
dependencies {
|
|
|
|
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
|
|
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
2023-09-07 21:37:56 +08:00
|
|
|
modCompileOnly "net.fabricmc:fabric-loader:${project.loader_version}"
|
|
|
|
modCompileOnly "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
2024-08-18 17:46:46 +08:00
|
|
|
|
2023-09-02 00:50:36 +08:00
|
|
|
}
|
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
|
|
|
inputs.property "minecraft_version", project.minecraft_version
|
|
|
|
inputs.property "loader_version", project.loader_version
|
|
|
|
filteringCharset "UTF-8"
|
|
|
|
|
|
|
|
filesMatching("fabric.mod.json") {
|
|
|
|
expand "version": project.version,
|
|
|
|
"minecraft_version": project.minecraft_version,
|
|
|
|
"loader_version": project.loader_version
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-18 17:46:46 +08:00
|
|
|
def targetJavaVersion = 21
|
2023-09-02 00:50:36 +08:00
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
it.options.encoding = "UTF-8"
|
|
|
|
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
|
|
|
|
it.options.release = targetJavaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
|
|
|
|
if (JavaVersion.current() < javaVersion) {
|
|
|
|
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
|
|
|
|
}
|
|
|
|
archivesBaseName = project.archives_base_name
|
|
|
|
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
|
|
|
|
// if it is present.
|
|
|
|
// If you remove this line, sources will not be generated.
|
|
|
|
withSourcesJar()
|
2023-09-07 21:37:56 +08:00
|
|
|
}
|