forked from Shadows-of-Fire/HexxitGear
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
59 lines (52 loc) · 1.53 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
buildscript {
repositories {
mavenLocal()
maven { url = "https://maven.minecraftforge.net/" }
}
dependencies {
classpath 'com.anatawa12.forge:ForgeGradle:2.3-1.0.8'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
version = "1.12.2-2.9.0"
group = "sct.hexxitgear"
archivesBaseName = "Hexxit Gear"
sourceCompatibility = targetCompatibility = "1.8"
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
minecraft {
version = "1.12.2-14.23.5.2847"
runDir = "run"
mappings = "stable_39"
makeObfSourceJar = false
}
repositories {
maven {
name 'CurseMaven'
url 'https://www.cursemaven.com/'
}
}
dependencies {
deobfCompile "curse.maven:had-enough-items-557549:5471944" // Had Enough Items 4.25.5
deobfCompile "curse.maven:hwyla-253449:2568751" // HWYLA 1.8.26-B41
deobfCompile "curse.maven:elenai-dodge-373104:3188646" // Elenai Dodge 1.13.2
deobfCompile "curse.maven:mantle-74924:2713386" // Mantle 1.3.3.55
deobfCompile "curse.maven:tinkers-construct-74072:2902483" // Tinkers' Construct 2.13.0.183
}
jar {
manifest {
attributes 'FMLAT': 'hexxitgear_at.cfg'
}
}
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'
}
}