infinity-craft/build.gradle

119 lines
2.9 KiB
Groovy
Raw Permalink Normal View History

2019-05-28 19:50:30 +02:00
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"
}
}
apply plugin: "net.minecraftforge.gradle.forge"
2019-06-21 23:24:20 +02:00
apply plugin: 'idea'
2019-05-08 20:20:27 +02:00
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()
}
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
}
2019-05-29 16:01:49 +02:00
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 {
2020-04-28 20:00:37 +02:00
compile 'com.gitlab.lcoremodders:LucraftCore:22057ced'
compile 'com.gitlab.lcoremodders:HeroesExpansion:860f629ed4'
compile 'com.gitlab.lcoremodders:SpeedsterHeroes:1e4b1fb951'
compile "star-tech-man-the-legendary-mod:star:tech:1.1.1"
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
2019-05-25 09:53:45 +02:00