MineLittlePony/build.gradle

174 lines
4.7 KiB
Groovy
Raw Normal View History

2019-06-01 21:40:06 +02:00
plugins {
2019-07-25 01:36:30 +02:00
id 'java-library'
2020-06-19 17:03:08 +02:00
id 'fabric-loom' version '0.4-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
def createVersion() {
def parts = []
2019-02-05 14:48:35 +01:00
if (project.release != 'RELEASE') {
parts.push project.release
}
2019-12-05 17:04:16 +01:00
def branch = System.env.TRAVIS_BRANCH
2019-12-01 00:31:58 +01:00
if (branch != null && branch != 'master' && !project.minecraft_version.startsWith(branch)) {
parts.push branch
}
parts.push project.minecraft_version
def ver = project.version
if (parts.size > 0) {
2019-12-13 12:56:02 +01:00
return ver + '-' + parts.join('-')
}
return ver
}
version = createVersion()
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'
2020-01-30 21:51:10 +01:00
url = 'https://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'
2020-01-30 21:51:10 +01:00
url = 'https://repo.minelittlepony-mod.com/maven/release'
2019-07-19 14:22:31 +02:00
}
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}"
2020-12-06 19:10:32 +01:00
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
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"
2020-06-19 17:03:08 +02:00
modApi fabricApi.module("fabric-api-base", project.fabric_version)
2020-08-16 23:48:26 +02:00
modApi fabricApi.module("fabric-lifecycle-events-v1", project.fabric_version)
2020-06-19 17:03:08 +02:00
modApi fabricApi.module("fabric-resource-loader-v0", project.fabric_version)
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}"
2020-03-20 17:18:47 +01:00
modCompileOnly("io.github.prospector:modmenu:${project.modmenu_version}") {
transitive = false
2020-03-19 14:25:59 +01:00
}
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"
2020-01-30 21:51:10 +01:00
url = "https://minelittlepony-mod.com"
2019-06-03 01:32:12 +02:00
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
}