-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
108 lines (90 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
buildscript {
repositories {
jcenter()
maven { url = "https://maven.minecraftforge.net/" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath "gradle.plugin.net.minecrell:licenser:0.3"
}
}
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'net.minecrell.licenser'
version = "0.3.5"
group = "pl.asie.ucw"
archivesBaseName = "UnlimitedChiselWorks"
sourceCompatibility = targetCompatibility = '1.8'
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
}
if (System.getenv("BUILD_NUMBER") != null)
version += ".${System.getenv("BUILD_NUMBER")}"
apply plugin: 'idea'
idea {
module {
outputDir = file('build/classes/java/main')
}
}
minecraft {
version = "1.12.2-14.23.5.2847"
runDir = "run"
mappings = "stable_39"
replace "\${version}", project.version
replace "\${mcversion}", version
}
repositories {
maven {
url "http://maven.tterrag.com/"
}
maven {
url 'http://maven.tehnut.info'
}
ivy {
name 'asie dependency mirror'
artifactPattern "http://asie.pl/javadeps/[module]-[revision](-[classifier]).[ext]"
}
}
sourceSets {
main {
output.resourcesDir = 'build/classes/java/main'
resources {
srcDirs += 'docs'
}
}
}
license {
sourceSets = [project.sourceSets.main]
header = project.file("docs/licenses/LICENSE")
ignoreFailures = true
exclude '**/*.lang'
exclude '**/*.info'
exclude '**/*.mcmeta'
}
dependencies {
deobfCompile "team.chisel:Chisel:MC1.12.2-1.0.2.45"
deobfCompile "team.chisel.ctm:CTM:MC1.12.2-1.0.2.31"
compileOnly "mcp.mobius.waila:Hwyla:1.8.26-B41_1.12.2:api"
runtimeOnly "mcp.mobius.waila:Hwyla:1.8.26-B41_1.12.2"
}
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'
}
doLast {
fileTree(dir: outputs.files.asPath, include: "**/*.json").each {
File file -> file.text = JsonOutput.toJson(new JsonSlurper().parse(file))
}
}
}
if (file('private.gradle').exists()) {
apply from: 'private.gradle'
}