2015-01-11 20:59:45 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2016-02-27 13:21:27 +01:00
|
|
|
jcenter()
|
2017-05-28 02:04:21 +02:00
|
|
|
maven { url = "http://files.minecraftforge.net/maven" }
|
2015-01-11 20:59:45 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-07-20 19:22:40 +02:00
|
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
|
2015-01-11 20:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-27 13:21:27 +01:00
|
|
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
2015-01-11 20:59:45 +01:00
|
|
|
|
2018-03-19 21:42:15 +01:00
|
|
|
version = "4.0.9"
|
2017-05-28 02:04:21 +02:00
|
|
|
group = "com.blamejared.modtweaker"
|
|
|
|
archivesBaseName = "modtweaker"
|
2015-01-11 20:59:45 +01:00
|
|
|
|
2017-05-28 02:04:21 +02:00
|
|
|
sourceCompatibility = targetCompatibility = "1.8"
|
2016-09-17 01:43:26 +02:00
|
|
|
compileJava {
|
|
|
|
sourceCompatibility = targetCompatibility = "1.8"
|
|
|
|
}
|
2017-05-28 02:04:21 +02:00
|
|
|
|
|
|
|
minecraft {
|
2018-02-02 17:12:28 +01:00
|
|
|
version = "1.12.2-14.23.1.2608"
|
2017-05-28 02:04:21 +02:00
|
|
|
runDir = "run"
|
2017-11-19 17:45:19 +01:00
|
|
|
mappings = "snapshot_20171003"
|
2017-05-28 02:04:21 +02:00
|
|
|
useDepAts = true
|
|
|
|
}
|
|
|
|
|
2015-10-13 00:07:17 +02:00
|
|
|
repositories {
|
2017-05-28 02:04:21 +02:00
|
|
|
maven {
|
|
|
|
url "http://dvs1.progwml6.com/files/maven"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "http://maven.blamejared.com"
|
|
|
|
}
|
2017-07-20 19:22:40 +02:00
|
|
|
maven {
|
|
|
|
url "http://maven.covers1624.net/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "http://chickenbones.net/maven/"
|
|
|
|
}
|
2017-07-23 17:07:56 +02:00
|
|
|
maven {
|
|
|
|
url "http://www.ryanliptak.com/maven/"
|
|
|
|
}
|
2017-07-25 22:56:09 +02:00
|
|
|
maven {
|
|
|
|
url "https://maven.chaosfield.at/"
|
|
|
|
}
|
2017-09-18 17:23:00 +02:00
|
|
|
maven {
|
2018-01-06 04:43:13 +01:00
|
|
|
url "http://maven.ic2.player.to/"
|
2017-09-18 17:23:00 +02:00
|
|
|
}
|
2017-12-13 12:09:08 +01:00
|
|
|
maven {
|
|
|
|
url "http://maven.tterrag.com"
|
|
|
|
}
|
2017-12-28 17:39:37 +01:00
|
|
|
maven {
|
2018-01-06 04:43:13 +01:00
|
|
|
url "https://dl.bintray.com/raoulvdberge/dev/"
|
2017-12-28 17:39:37 +01:00
|
|
|
}
|
2018-02-11 01:46:56 +01:00
|
|
|
maven {
|
|
|
|
url = "http://maven.thiakil.com"
|
|
|
|
}
|
2018-03-02 22:49:07 +01:00
|
|
|
maven {
|
|
|
|
url "http://tehnut.info/maven/"
|
|
|
|
}
|
2017-12-28 20:47:00 +01:00
|
|
|
|
2015-10-13 00:07:17 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 21:30:30 +02:00
|
|
|
dependencies {
|
2018-03-05 20:34:48 +01:00
|
|
|
deobfCompile "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.1.5.+"
|
2018-02-02 17:12:28 +01:00
|
|
|
deobfCompile "mezz.jei:jei_1.12.2:4.8.5.+"
|
2018-02-14 23:22:34 +01:00
|
|
|
deobfCompile "com.blamejared:MTLib:3.0.2.4"
|
2018-02-11 01:46:56 +01:00
|
|
|
deobfCompile "com.azanor.baubles:Baubles:1.12-1.5.2"
|
2018-02-11 00:31:49 +01:00
|
|
|
deobfCompile "vazkii.botania:Botania:r1.10-353"
|
2017-11-23 20:42:07 +01:00
|
|
|
|
2018-03-02 16:39:06 +01:00
|
|
|
|
2018-01-06 04:43:13 +01:00
|
|
|
deobfCompile("cofh:ThermalExpansion:1.12.2-5.+:deobf") {
|
2017-11-23 20:42:07 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2018-02-02 17:12:28 +01:00
|
|
|
deobfCompile("betterwithmods:BetterWithMods:1.12-2.0.+:dev") {
|
2017-11-23 20:42:07 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2017-12-13 12:09:08 +01:00
|
|
|
deobfCompile("de.ellpeck.actuallyadditions:ActuallyAdditions:1.12.1-r121") {
|
2017-11-23 20:42:07 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2017-12-13 12:09:08 +01:00
|
|
|
deobfCompile("slimeknights.mantle:Mantle:1.12-1.3.1.+") {
|
2017-11-23 20:42:07 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2018-02-02 17:12:28 +01:00
|
|
|
deobfCompile("slimeknights:TConstruct:1.12.2-2.9.0.+") {
|
2017-11-23 20:42:07 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2017-12-13 12:09:08 +01:00
|
|
|
deobfCompile('net.sengir.forestry:forestry_1.12.2:5.+') {
|
2017-11-23 20:42:07 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2018-02-02 17:12:28 +01:00
|
|
|
deobfCompile "team.chisel.ctm:CTM:MC1.12-0.2.3.12"
|
2017-12-28 17:39:37 +01:00
|
|
|
|
2018-02-02 17:12:28 +01:00
|
|
|
deobfCompile("refinedstorage:refinedstorage:1.5.32-1498") {
|
2017-12-28 17:39:37 +01:00
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2017-12-28 20:47:00 +01:00
|
|
|
deobfCompile("knightminer.tcomplement:TinkersComplement:1.12.1-0.2.1.3") {
|
2018-01-06 04:43:13 +01:00
|
|
|
exclude group: 'mezz.jei'
|
2017-12-28 20:47:00 +01:00
|
|
|
}
|
2018-03-02 16:39:06 +01:00
|
|
|
deobfCompile "team.chisel:Chisel:MC1.12.2-0.2.0.31"
|
2018-03-02 22:49:07 +01:00
|
|
|
deobfCompile "com.wayoftime.bloodmagic:BloodMagic:1.12.2-2.2.7-90"
|
|
|
|
deobfCompile "info.amerifrance.guideapi:Guide-API:1.12-2.1.4-57"
|
2018-03-18 02:52:34 +01:00
|
|
|
deobfCompile("knightminer:Inspirations:1.12.2-0.1.2.5") {
|
|
|
|
exclude group: 'mezz.jei'
|
|
|
|
}
|
2016-07-09 22:30:50 +02:00
|
|
|
}
|
2015-10-13 00:07:17 +02:00
|
|
|
|
2017-05-28 02:04:21 +02:00
|
|
|
processResources {
|
2017-01-05 00:09:10 +01:00
|
|
|
inputs.property "version", project.version
|
2017-05-28 02:04:21 +02:00
|
|
|
inputs.property "mcversion", project.minecraft.version
|
2016-02-27 13:21:27 +01:00
|
|
|
|
2017-01-05 00:09:10 +01:00
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
include 'mcmod.info'
|
2017-05-28 02:04:21 +02:00
|
|
|
|
|
|
|
expand 'version': project.version, 'mcversion': project.minecraft.version
|
2017-01-05 00:09:10 +01:00
|
|
|
}
|
2017-01-05 00:09:10 +01:00
|
|
|
|
2017-01-05 00:09:10 +01:00
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude 'mcmod.info'
|
|
|
|
}
|
|
|
|
}
|