ModTweaker/build.gradle
Brennan Ward fbb7b33866 Botania Support (#556)
* It turns on and it might work idk

* actually register

might need to be moved to @ZenRegister but I don't really understand
that rn

* move to @ZenRegister

* names

* fix removals being broken entirely and add tests

I think jared is going to hit me with a hammer for not using the late
system in place, but I tried rewriting the IActions to work like that
and uh... Fire everywhere.

* runnable was a better idea

* manually log stuff

* remove printlns from commands

also format because everything is a mess right now between old/new
formats.  Only formats the botania package.

* Add describes

also switches messages to links to the crt log

* minor issue
2017-12-13 13:08:18 +02:00

92 lines
2.3 KiB
Groovy

buildscript {
repositories {
jcenter()
maven { url = "http://files.minecraftforge.net/maven" }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
version = "4.0.5"
group = "com.blamejared.modtweaker"
archivesBaseName = "modtweaker"
sourceCompatibility = targetCompatibility = "1.8"
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
minecraft {
version = "1.12.2-14.23.0.2551"
runDir = "run"
mappings = "snapshot_20171003"
useDepAts = true
}
repositories {
maven {
url "http://dvs1.progwml6.com/files/maven"
}
maven {
url "http://maven.blamejared.com"
}
maven {
url "http://maven.covers1624.net/"
}
maven {
url "http://chickenbones.net/maven/"
}
maven {
url "http://www.ryanliptak.com/maven/"
}
maven {
url "https://maven.chaosfield.at/"
}
maven {
url = "http://maven.ic2.player.to/"
}
}
dependencies {
deobfCompile "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.0.10.+"
deobfCompile "CraftTweaker2:CraftTweaker2-API:4.0.10.+"
deobfCompile "CraftTweaker2:ZenScript:4.0.10.+"
deobfCompile "mezz.jei:jei_1.12.2:4.8.0.+"
deobfCompile "com.blamejared:MTLib:3.0.+"
deobfCompile ("cofh:ThermalExpansion:1.12-5.3.+:deobf"){
exclude group: 'mezz.jei'
}
compileOnly ("betterwithmods:BetterWithMods:1.12-2.0.15-197:dev"){
exclude group: 'mezz.jei'
}
deobfCompile ("de.ellpeck.actuallyadditions:ActuallyAdditions:1.12.1-r121"){
exclude group: 'mezz.jei'
}
deobfCompile ("slimeknights.mantle:Mantle:1.12-1.3.1.+"){
exclude group: 'mezz.jei'
}
deobfCompile ("slimeknights:TConstruct:1.12-2.7.4.36"){
exclude group: 'mezz.jei'
}
deobfCompile ('net.sengir.forestry:forestry_1.12.2:5.+'){
exclude group: 'mezz.jei'
}
}
processResources {
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}