ModTweaker/build.gradle

124 lines
3.2 KiB
Groovy
Raw Normal View History

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-05-06 01:28:23 +02:00
version = "4.0.11"
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 {
version = "1.12.2-14.23.3.2655"
2017-05-28 02:04:21 +02:00
runDir = "run"
mappings = "snapshot_20180407"
2017-05-28 02:04:21 +02:00
useDepAts = true
}
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/"
}
maven {
url "http://www.ryanliptak.com/maven/"
}
2017-07-25 22:56:09 +02:00
maven {
url "https://maven.chaosfield.at/"
}
maven {
2018-01-06 04:43:13 +01:00
url "http://maven.ic2.player.to/"
}
2017-12-13 12:09:08 +01:00
maven {
url "http://maven.tterrag.com"
}
maven {
2018-01-06 04:43:13 +01:00
url "https://dl.bintray.com/raoulvdberge/dev/"
}
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/"
}
2018-04-19 20:08:38 +02:00
maven {
url "http://maven.amadornes.com/"
}
2017-12-28 20:47:00 +01:00
}
dependencies {
deobfCompile "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.1.5.+"
2018-04-19 20:08:38 +02:00
deobfCompile "mezz.jei:jei_1.12.2:4.8.6.162"
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-05-05 19:34:05 +02:00
deobfCompile "vazkii.botania:Botania:r1.10-355.4"
2018-03-02 16:39:06 +01:00
deobfCompile("cofh:ThermalExpansion:1.12.2-5.4.2.27:universal") {
exclude group: 'mezz.jei'
}
deobfCompile("betterwithmods:BetterWithMods:1.12-2.1.11-491") {
exclude group: 'mezz.jei'
}
2017-12-13 12:09:08 +01:00
deobfCompile("de.ellpeck.actuallyadditions:ActuallyAdditions:1.12.1-r121") {
exclude group: 'mezz.jei'
}
2017-12-13 12:09:08 +01:00
deobfCompile("slimeknights.mantle:Mantle:1.12-1.3.1.+") {
exclude group: 'mezz.jei'
}
2018-02-02 17:12:28 +01:00
deobfCompile("slimeknights:TConstruct:1.12.2-2.9.0.+") {
exclude group: 'mezz.jei'
}
2017-12-13 12:09:08 +01:00
deobfCompile('net.sengir.forestry:forestry_1.12.2:5.+') {
exclude group: 'mezz.jei'
}
2018-02-02 17:12:28 +01:00
deobfCompile "team.chisel.ctm:CTM:MC1.12-0.2.3.12"
2018-02-02 17:12:28 +01:00
deobfCompile("refinedstorage:refinedstorage:1.5.32-1498") {
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-04-19 20:08:38 +02:00
deobfCompile("knightminer:Inspirations:1.12.2-0.1.2.5") {
exclude group: 'mezz.jei'
}
2016-07-09 22:30:50 +02:00
}
2017-05-28 02:04:21 +02:00
processResources {
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
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
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}