ARR-Checker/build.gradle

38 lines
1.2 KiB
Groovy
Raw Normal View History

2018-11-03 22:22:32 +00:00
plugins {
2018-12-22 16:36:30 +00:00
id 'fabric-loom' version '0.2.0-SNAPSHOT'
2018-11-03 22:22:32 +00:00
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2018-11-03 22:22:32 +00:00
archivesBaseName = project.archives_base_name
version = project.mod_version
2018-11-03 22:22:32 +00:00
minecraft {
2018-11-06 09:51:23 +00:00
}
2018-11-03 22:22:32 +00:00
2018-11-06 09:51:23 +00:00
dependencies {
//to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}"
modCompile "net.fabricmc:fabric-loader:${project.loader_version}"
2018-12-09 16:49:28 +00:00
// Fabric API. This is technically optional, but you probably want it anyway.
modCompile "net.fabricmc:fabric:${project.fabric_version}"
2018-11-03 22:22:32 +00:00
}
2018-12-22 16:37:14 +00:00
2019-02-15 20:55:33 +00:00
// 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"
}
2018-12-22 16:37:14 +00:00
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}