MineLittlePony/build.gradle

99 lines
2.4 KiB
Groovy
Raw Normal View History

2019-06-01 21:40:06 +02:00
plugins {
id 'fabric-loom' version '0.2.2-SNAPSHOT'
id 'org.ajoberstar.grgit' version '3.1.1'
id 'com.github.johnrengelman.plugin-shadow' version '2.0.3'
2016-01-15 08:49:17 +01:00
}
2019-05-27 17:59:15 +02:00
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_8
ext {
if (grgit == null) {
revision = "nogit"
} else {
revision = "${grgit.log().size()}-${grgit.head().abbreviatedId}"
if (file('.git/shallow').exists()) {
// don't clone with --depth
2019-06-01 10:01:35 +02:00
revision = "-1-shallow"
}
}
}
2019-02-05 14:48:35 +01:00
version = "${project.minecraft_version}.${project.version}"
if (project.release != 'RELEASE') {
version += "-${project.release}"
}
if (project.release == 'SNAPSHOT') {
version += "-${project.revision}"
}
group = project.group
description = project.displayname
2019-03-24 11:04:36 +01:00
archivesBaseName = project.name
2015-08-02 00:36:33 +02:00
2019-06-01 21:40:06 +02:00
repositories {
maven {
name = 'Jit'
url = 'https://jitpack.io'
}
}
2019-05-27 17:59:15 +02:00
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}"
modCompile "net.fabricmc:fabric-loader:${project.loader_version}"
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modCompile "com.github.MineLittlePony:Kirin:${project.kirin_version}"
include "com.github.MineLittlePony:Kirin:${project.kirin_version}"
2019-06-01 21:40:06 +02:00
2019-05-27 17:59:15 +02:00
// TODO: HD Skins can be made optional later
2019-05-28 16:59:57 +02:00
modCompile "com.github.MineLittlePony:HDSkins:${project.hd_skins_version}"
include "com.github.MineLittlePony:HDSkins:${project.hd_skins_version}"
2019-05-27 17:59:15 +02:00
}
processResources {
inputs.property "version", project.version
2019-03-24 11:22:25 +01:00
2019-05-27 17:59:15 +02:00
from(sourceSets.main.resources.srcDirs) {
include "fabric.mod.json"
expand "version": project.version
}
2019-03-24 11:22:25 +01:00
2019-05-27 17:59:15 +02:00
from(sourceSets.main.resources.srcDirs) {
exclude "fabric.mod.json"
}
2019-06-01 21:40:06 +02:00
from 'LICENSE'
2019-03-24 11:22:25 +01:00
}
2019-05-27 17:59:15 +02:00
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
2019-03-25 00:29:56 +01:00
}
2019-05-27 17:59:15 +02:00
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
2019-05-27 17:59:15 +02:00
from sourceSets.main.allSource
}
2018-07-08 09:35:11 +02:00
2019-04-14 13:56:09 +02:00
//
// Imports the Background Ponies from the MLP Community Skin Pack
//
task copyBGPones(type: Copy) {
def illegals = /[^a-z0-9_\/.-]/
2018-11-14 22:21:40 +01:00
from "skins/Background Ponies"
into temporaryDir
eachFile {
if (it.name =~ illegals){
logger.warn("Sanitizing file with illegal characters: ${it.path}")
it.name = it.name.replaceAll(/\s/, '_').replaceAll(illegals, '')
}
}
}