ARR-Checker/build.gradle

69 lines
1.8 KiB
Groovy
Raw Normal View History

2018-11-03 22:22:32 +00:00
plugins {
id 'fabric-loom' version '0.9-SNAPSHOT'
2019-02-15 21:26:03 +00:00
id 'maven-publish'
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
2019-02-15 21:25:50 +00:00
group = project.maven_group
2018-11-03 22:22:32 +00:00
2018-11-06 09:51:23 +00:00
dependencies {
2019-02-15 21:26:03 +00:00
//to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.minecraft_version}+${project.yarn_build}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2018-12-09 16:49:28 +00:00
2019-04-23 19:06:39 +00:00
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
2018-11-03 22:22:32 +00:00
}
2018-12-22 16:37:14 +00:00
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
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) {
2019-02-15 21:26:03 +00:00
options.encoding = "UTF-8"
2019-02-15 20:55:33 +00:00
}
java {
// 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()
2018-12-22 16:37:14 +00:00
}
jar {
2019-02-15 21:26:03 +00:00
from "LICENSE"
}
// configure the maven publication
publishing {
2019-02-15 21:26:03 +00:00
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
2019-08-02 14:07:32 +00:00
artifact(remapJar) {
2019-02-15 21:26:03 +00:00
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
2019-02-15 21:26:03 +00:00
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
}