MineLittlePony/build.gradle

167 lines
4.6 KiB
Groovy
Raw Normal View History

2019-06-03 12:47:30 +02:00
// Fabric build script
// 03/06/2019
// https://github.com/FabricMC/fabric-example-mod/blob/master/build.gradle
2019-06-01 21:40:06 +02:00
plugins {
2019-07-25 01:36:30 +02:00
id 'java-library'
2019-11-22 18:04:23 +01:00
id 'fabric-loom' version '0.2.6-SNAPSHOT'
2019-06-03 01:32:12 +02:00
id 'maven-publish'
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
2019-12-05 17:04:16 +01:00
version = project.version
2019-02-05 14:48:35 +01:00
2019-12-05 17:04:16 +01:00
if (System.env.TRAVIS_BRANCH != project.minecraft_version) {
version += "-${project.minecraft_version}"
}
if (System.env.TRAVIS_BRANCH != null && System.env.TRAVIS_BRANCH != 'master') {
2019-12-01 00:31:58 +01:00
version += "-${System.env.TRAVIS_BRANCH}"
}
if (project.release != 'RELEASE') {
version += "-${project.release}"
}
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-02 01:08:36 +02:00
minecraft {
refmapName = 'minelp.mixin.refmap.json'
}
2019-06-01 21:40:06 +02:00
repositories {
maven {
2019-06-03 01:32:12 +02:00
name = 'minelp'
url = 'http://repo.minelittlepony-mod.com/maven/snapshot'
2019-06-01 21:40:06 +02:00
}
2019-07-19 14:22:31 +02:00
maven {
name = 'minelp-release'
url = 'http://repo.minelittlepony-mod.com/maven/release'
}
2019-06-01 21:40:06 +02:00
}
2019-05-27 17:59:15 +02:00
dependencies {
2019-06-03 01:32:12 +02:00
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}"
modApi "net.fabricmc:fabric-loader:${project.loader_version}"
2019-06-03 01:32:12 +02:00
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
2019-11-22 18:04:23 +01:00
modApi "net.fabricmc.fabric-api:fabric-api-base:0.1.2+"
modApi "net.fabricmc.fabric-api:fabric-events-lifecycle-v0:0.1.2+"
modApi "net.fabricmc.fabric-api:fabric-resource-loader-v0:0.1.8+"
2019-05-27 17:59:15 +02:00
modApi "com.minelittlepony:Kirin:${project.kirin_version}"
include "com.minelittlepony:Kirin:${project.kirin_version}"
2019-06-01 21:40:06 +02:00
2019-12-02 12:41:03 +01:00
modApi "com.minelittlepony:Mson:${project.mson_version}"
include "com.minelittlepony:Mson:${project.mson_version}"
2019-11-25 14:06:08 +01:00
modImplementation "com.minelittlepony:HDSkins:${project.hd_skins_version}"
2019-12-05 14:46:28 +01:00
modImplementation "io.github.prospector:modmenu:${project.modmenu_version}"
2019-05-27 17:59:15 +02:00
}
//
// Imports the Background Ponies from the MLP Community Skin Pack
//
task copyBGPones(type: Copy) {
def illegals = /[^a-z0-9_\/.-]/
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, '')
}
}
}
2019-05-27 17:59:15 +02:00
processResources {
2019-06-03 01:32:12 +02:00
inputs.property "version", project.version
2019-03-24 11:22:25 +01:00
2019-06-03 01:32:12 +02:00
from(sourceSets.main.resources.srcDirs) {
include "fabric.mod.json"
expand "version": project.version
}
2019-03-24 11:22:25 +01:00
2019-06-03 01:32:12 +02:00
from(sourceSets.main.resources.srcDirs) {
exclude "fabric.mod.json"
}
2019-06-01 21:40:06 +02:00
from 'LICENSE'
exclude "/assets/minelittlepony/textures/entity/pony"
from(copyBGPones) {
into "/assets/minelittlepony/textures/entity/pony"
}
2019-03-24 11:22:25 +01:00
}
2019-05-27 17:59:15 +02:00
tasks.withType(JavaCompile) {
2019-06-03 01:32:12 +02:00
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) {
2019-06-03 01:32:12 +02:00
classifier = "sources"
from sourceSets.main.allSource
}
2018-07-08 09:35:11 +02:00
2019-06-03 01:32:12 +02:00
publishing {
publications {
maven(MavenPublication) {
afterEvaluate {
2019-07-25 01:36:30 +02:00
artifact(remapJar)
2019-06-03 01:32:12 +02:00
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
pom {
name = "MineLittlePony"
description = "HD Skins support for Minecraft"
url = "http://minelittlepony-mod.com"
licenses {
license {
name = "MIT Public License"
url = "https://tlo.mit.edu/learn-about-intellectual-property/software-and-open-source-licensing"
}
}
developers {
developer {
id = "killjoy1221"
name = "Matthew Messinger"
email = "mattmess1221@gmail.com"
}
developer {
id = "sollace"
}
}
scm {
connection = 'scm:git:git://github.com/MineLittlePony/MineLittlePony.git'
developerConnection = 'scm:git:ssh://github.com/MineLittlePony/MineLittlePony.git'
url = 'https://github.com/MineLittlePony/MineLittlePony'
}
}
}
}
repositories {
maven {
name = "MineLittlePony"
def mvn = 's3://repo.minelittlepony-mod.com/maven'
url = release == 'SNAPSHOT' ? "$mvn/snapshot" : "$mvn/release"
credentials(AwsCredentials) {
accessKey = System.env.ACCESS_KEY
secretKey = System.env.SECRET_KEY
}
}
}
2019-06-05 17:27:55 +02:00
}