This repository has been archived by the owner on Mar 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
81 lines (66 loc) · 1.94 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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 = zenevents_version
group = "com.crafttweaker.zenevents"
archivesBaseName = "zenevents"
sourceCompatibility = targetCompatibility = "1.8"
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
minecraft {
version = "1.12.2-14.23.1.2608"
runDir = "run"
mappings = "snapshot_20171003"
useDepAts = true
}
repositories {
maven {
url "http://tehnut.info/maven/"
}
maven {
url "http://dvs1.progwml6.com/files/maven"
}
maven {
url "http://maven.blamejared.com"
}
maven {
url = "http://maven.thiakil.com"
}
maven {
url 'https://maven.mcmoddev.com'
}
}
dependencies {
deobfCompile "com.wayoftime.bloodmagic:BloodMagic:${bloodmagic_version}"
deobfCompile "info.amerifrance.guideapi:Guide-API:${guideapi_version}"
deobfCompile "vazkii.botania:Botania:${botania_version}"
deobfCompile "mezz.jei:${jei_version}"
deobfCompile "com.azanor.baubles:Baubles:${baubles_version}"
deobfCompile "net.darkhax.gamestages:GameStages-${gamestages_version}"
deobfCompile "net.darkhax.bookshelf:Bookshelf-${bookshelf_version}"
deobfCompile("slimeknights.mantle:Mantle:${mantle_version}") {
exclude group: 'mezz.jei'
}
deobfCompile("slimeknights:TConstruct:${ticon_version}") {
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'
}
}