2019-06-01 21:40:06 +02:00
|
|
|
plugins {
|
2019-07-25 01:36:30 +02:00
|
|
|
id 'java-library'
|
2021-05-15 01:14:42 +02:00
|
|
|
id 'fabric-loom' version '0.8-SNAPSHOT'
|
2019-06-03 01:32:12 +02:00
|
|
|
id 'maven-publish'
|
2016-01-15 08:49:17 +01:00
|
|
|
}
|
|
|
|
|
2021-06-10 19:32:21 +02:00
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(16)
|
|
|
|
}
|
|
|
|
}
|
2019-03-24 10:54:38 +01:00
|
|
|
|
2019-12-12 19:15:41 +01:00
|
|
|
def createVersion() {
|
|
|
|
def parts = []
|
2019-02-05 14:48:35 +01:00
|
|
|
|
2019-12-12 19:15:41 +01:00
|
|
|
if (project.release != 'RELEASE') {
|
|
|
|
parts.push project.release
|
|
|
|
}
|
2019-12-05 17:04:16 +01:00
|
|
|
|
2021-03-07 17:04:47 +01:00
|
|
|
def branch = System.env.TRAVIS_BRANCH
|
2019-12-01 00:31:58 +01:00
|
|
|
|
2021-03-07 17:04:47 +01:00
|
|
|
if (branch != null && branch != 'master' && !project.minecraft_version.startsWith(branch)) {
|
|
|
|
parts.push branch
|
2019-12-12 19:15:41 +01:00
|
|
|
}
|
|
|
|
|
2021-03-07 17:04:47 +01:00
|
|
|
parts.push project.minecraft_version
|
|
|
|
|
2019-12-12 19:15:41 +01:00
|
|
|
def ver = project.version
|
|
|
|
if (parts.size > 0) {
|
2019-12-13 12:56:02 +01:00
|
|
|
return ver + '-' + parts.join('-')
|
2019-12-12 19:15:41 +01:00
|
|
|
}
|
|
|
|
return ver
|
2018-08-22 01:57:28 +02:00
|
|
|
}
|
|
|
|
|
2019-12-12 19:15:41 +01:00
|
|
|
version = createVersion()
|
2018-08-22 02:29:17 +02:00
|
|
|
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'
|
2021-03-27 21:54:16 +01:00
|
|
|
accessWidener 'src/main/resources/minelp.aw'
|
2019-06-02 01:08:36 +02:00
|
|
|
}
|
|
|
|
|
2019-06-01 21:40:06 +02:00
|
|
|
repositories {
|
2021-06-06 20:38:11 +02:00
|
|
|
maven {
|
|
|
|
name = 'modmenu'
|
|
|
|
url = 'https://maven.terraformersmc.com/releases'
|
|
|
|
}
|
2019-06-01 21:40:06 +02:00
|
|
|
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"
|
2019-07-04 05:40:56 +02:00
|
|
|
modApi "net.fabricmc:fabric-loader:${project.loader_version}"
|
2019-06-27 02:33:05 +02:00
|
|
|
|
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)
|
2021-02-03 12:45:52 +01:00
|
|
|
modApi fabricApi.module("fabric-networking-v0", project.fabric_version)
|
2019-05-27 17:59:15 +02:00
|
|
|
|
2019-07-08 04:47:13 +02:00
|
|
|
modApi "com.minelittlepony:Kirin:${project.kirin_version}"
|
2019-06-27 02:07:30 +02:00
|
|
|
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
|
|
|
|
2019-07-04 05:40:56 +02:00
|
|
|
modImplementation "com.minelittlepony:HDSkins:${project.hd_skins_version}"
|
2021-06-06 20:38:11 +02:00
|
|
|
modCompileOnly("com.terraformersmc:modmenu:${project.modmenu_version}")
|
2019-05-27 17:59:15 +02:00
|
|
|
}
|
|
|
|
|
2019-06-12 16:37:50 +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
|
|
|
|
2021-05-15 01:14:42 +02:00
|
|
|
filesMatching("fabric.mod.json") {
|
2019-06-03 01:32:12 +02:00
|
|
|
expand "version": project.version
|
|
|
|
}
|
2019-03-24 11:22:25 +01:00
|
|
|
|
2019-06-01 21:40:06 +02:00
|
|
|
from 'LICENSE'
|
2019-06-12 16:37:50 +02:00
|
|
|
|
|
|
|
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-08-22 01:57:28 +02:00
|
|
|
}
|
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
|
|
|
}
|