-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
108 lines (90 loc) · 2.66 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://files.minecraftforge.net/maven' }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
}
}
repositories {
jcenter()
maven {
name = 'ChickenBoneMaven'
url = 'http://chickenbones.net/maven'
}
maven {
name = 'CuckooMaven'
url = 'https://kitramgp.github.io/cuckoo-maven/maven'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'idea'
// 在这里更改版本
version = '1.0.1.10-alpha'
group = 'com.gonggongjohn.eok'
archivesBaseName = 'eok'
// 添加前缀后缀
String mcVersion = '1.12.2'
version = mcVersion + '-' + version + getVersionAppendage()
sourceCompatibility = targetCompatibility = '1.8' // 使"eclipse" task正确生成启动方案
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
}
static String getVersionAppendage() {
def proc = 'git rev-parse --short HEAD'.execute()
proc.waitFor()
return '-' + (proc.exitValue() ? 'NO-GIT' : proc.text.trim())
}
task apiJar(type: Jar) {
classifier = 'api'
from sourceSets.main.output
from sourceSets.main.allSource
include 'com/gonggongjohn/eok/api/**'
}
artifacts {
//noinspection GrUnresolvedAccess
archives apiJar
}
minecraft {
version = '1.12.2-14.23.5.2847'
runDir = 'run'
mappings = 'snapshot_20171003'
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
// 替换EOK版本号
replaceIn 'EOK.java'
replace '@EOKVERSION@', project.version
}
dependencies {
compile 'com.osir.tmc:tmc-api:1.3.2.1'
// replaced by /libs/CuckooLib-1.0.5.jar
// compile 'com.github.zi_jing.cuckoolib:CuckooLib:1.0.4'
compile 'codechicken:CodeChickenLib:1.12.2-3.2.2.353:deobf'
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
processResources {
// this will ensure that this task is redone when the versions change.
inputs.property 'version', project.version
inputs.property 'mcversion', project.minecraft.version
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}
// copy everything else except the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
// 强制UTF-8构建
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}