mirror of
https://github.com/chylex/Minecraft-Window-Title.git
synced 2024-11-14 17:42:49 +01:00
48 lines
1.2 KiB
Groovy
48 lines
1.2 KiB
Groovy
plugins{
|
|
id 'fabric-loom' version '0.2.6-SNAPSHOT'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
archivesBaseName = project.archives_base_name + '-' + project.minecraft_version
|
|
version = project.mod_version
|
|
group = project.maven_group
|
|
|
|
minecraft{}
|
|
|
|
dependencies{
|
|
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
|
modCompile "net.fabricmc:fabric-loader:${project.loader_version}"
|
|
modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
|
}
|
|
|
|
processResources{
|
|
inputs.property "version", project.version
|
|
|
|
from(sourceSets.main.resources.srcDirs){
|
|
include "fabric.mod.json"
|
|
expand "version": project.version
|
|
}
|
|
|
|
from(sourceSets.main.resources.srcDirs){
|
|
exclude "fabric.mod.json"
|
|
}
|
|
}
|
|
|
|
// fix jar file name
|
|
version = 'v' + version
|
|
|
|
// ensure that the encoding is set to UTF-8, no matter what the system default is
|
|
// this fixes some edge cases with special characters not displaying correctly
|
|
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
|
tasks.withType(JavaCompile){
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
jar{
|
|
from "../LICENSE"
|
|
}
|