infinity-craft/build.gradle

148 lines
3.6 KiB
Groovy
Raw Normal View History

2019-05-28 19:50:30 +02:00
import org.apache.tools.ant.filters.ReplaceTokens
2019-05-08 20:20:27 +02:00
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven"
}
2019-05-28 19:50:30 +02:00
2019-05-08 20:20:27 +02:00
}
dependencies {
classpath "net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT"
}
}
2019-05-24 23:12:28 +02:00
plugins {
id 'com.matthewprenger.cursegradle' version '1.2.0'
}
2019-05-08 20:20:27 +02:00
apply plugin: "net.minecraftforge.gradle.forge"
2019-05-25 09:53:45 +02:00
def getVersionName = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--tags'
standardOutput = stdout
}
return stdout.toString().trim()
}
2019-05-28 20:25:28 +02:00
def getAPIKey = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'cat', '../apiKey'
standardOutput = stdout
}
return stdout.toString().trim()
}
2019-05-25 09:53:45 +02:00
version = getVersionName()
2019-05-08 20:20:27 +02:00
group = modGroup
archivesBaseName = modBaseName
minecraft {
version = project.forgeVersion
runDir = "run"
// the mappings can be changed at any time, and must be in the following format.
// snapshot_YYYYMMDD snapshot are built nightly.
// stable_# stables are built at the discretion of the MCP team.
// Use non-default mappings at your own risk. they may not always work.
// simply re-run your setup task after changing the mappings to update your workspace.
mappings = project.mcpVersion
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
2019-05-28 19:50:30 +02:00
replace '${version}', project.version
2019-05-08 20:20:27 +02:00
}
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "DVS1 Maven FS"
url = "http://dvs1.progwml6.com/files/maven"
}
maven {
name = "CoFH Maven"
url = "http://maven.covers1624.net"
}
2019-05-28 19:50:30 +02:00
maven {
name = "CurseForge"
url = "https://minecraft.curseforge.com/api/maven/"
}
2019-05-08 20:20:27 +02:00
maven { url "https://jitpack.io" }
maven { url "https://maven.latmod.com/" }
}
dependencies {
2019-05-28 19:50:30 +02:00
deobfCompile ("com.gitlab.lcoremodders:LucraftCore:2.4.2")
2019-05-21 17:28:28 +02:00
deobfCompile 'com.gitlab.lcoremodders:HeroesExpansion:1.3.3'
deobfCompile 'com.gitlab.lcoremodders:SpeedsterHeroes:1e4b1fb951'
2019-05-08 20:20:27 +02:00
compile fileTree(dir: 'libs', include: ['*.jar'])
}
2019-05-28 19:50:30 +02:00
2019-05-08 20:20:27 +02:00
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
manifest {
attributes 'FMLCorePlugin': 'lucraft.mods.lucraftcore.core.LucraftCoreCoreMod', 'FMLCorePluginContainsFMLMod': 'true'
}
2019-05-28 19:50:30 +02:00
2019-05-08 20:20:27 +02:00
}
artifacts {
archives deobfJar
}
processResources {
// this will ensure that this task is redone when the versions change.
2019-05-28 19:50:30 +02:00
inputs.property "version", getVersionName
2019-05-08 20:20:27 +02:00
inputs.property "mcversion", project.minecraft.version
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include "mcmod.info"
// replace version and mcversion
2019-05-28 19:50:30 +02:00
expand "version": getVersionName, "mcversion": project.minecraft.version
2019-05-08 20:20:27 +02:00
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude "mcmod.info"
}
}
2019-05-24 23:12:28 +02:00
curseforge {
2019-05-28 20:28:03 +02:00
apiKey = getAPIKey
2019-05-24 23:12:28 +02:00
project {
2019-05-25 09:53:45 +02:00
id = projectID
2019-05-24 23:12:28 +02:00
changelog = file('changelog.txt')
releaseType = "beta"
addGameVersion '1.12.2'
mainArtifact(jar) {
2019-05-25 09:53:45 +02:00
displayName = "Infinity Craft $getVersionName"
2019-05-25 09:57:00 +02:00
relations {
requiredDependency 'lucraft-core'
optionalDependency 'heroesexpansion'
}
2019-05-24 23:12:28 +02:00
}
}
}
2019-05-25 09:53:45 +02:00