52 lines
1.3 KiB
Groovy
52 lines
1.3 KiB
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
maven { url = "http://files.minecraftforge.net/maven" }
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
||
|
}
|
||
|
}
|
||
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
||
|
|
||
|
version = "1.0"
|
||
|
group= "com.legacy.aether"
|
||
|
archivesBaseName = "aether_legacy"
|
||
|
|
||
|
sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly.
|
||
|
compileJava {
|
||
|
sourceCompatibility = targetCompatibility = "1.6"
|
||
|
}
|
||
|
|
||
|
minecraft {
|
||
|
version = "1.10.2-12.18.3.2185"
|
||
|
runDir = "run"
|
||
|
|
||
|
mappings = "snapshot_20161111"
|
||
|
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
}
|
||
|
|
||
|
processResources
|
||
|
{
|
||
|
// this will ensure that this task is redone when the versions change.
|
||
|
inputs.property "version", project.version
|
||
|
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
|
||
|
expand 'version':project.version, 'mcversion':project.minecraft.version
|
||
|
}
|
||
|
|
||
|
// copy everything else, thats not the mcmod.info
|
||
|
from(sourceSets.main.resources.srcDirs) {
|
||
|
exclude 'mcmod.info'
|
||
|
}
|
||
|
}
|