forked from TerraFirmaCraft/TerraFirmaCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
182 lines (152 loc) · 5.42 KB
/
Copy pathbuild.gradle
File metadata and controls
182 lines (152 loc) · 5.42 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
buildscript {
repositories {
maven { url = 'https://maven.minecraftforge.net' }
maven { url = 'https://maven.parchmentmc.org' }
maven {
url "https://repo.spongepowered.org/repository/maven-public/"
content { includeGroup "org.spongepowered" }
}
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
classpath 'org.parchmentmc:librarian:1.+'
}
}
plugins {
id 'org.cadixdev.licenser' version '0.6.1'
id 'idea'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'org.spongepowered.mixin'
def localProperties = new File('./dev.gradle')
localProperties.createNewFile()
apply from: 'dev.gradle'
// These properties can all be customized from dev.gradle
def mappingsChannel = project.hasProperty('mappings_channel') ? mappings_channel : 'official'
def mappingsVersion = project.hasProperty('mappings_version') ? mappings_version : minecraft_version
def minifyResources = project.hasProperty("minify_resources") ? minify_resources : true
println "Using mappings: " + mappingsChannel + " / " + mappingsVersion
group = "net.dries007.tfc" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "TerraFirmaCraft-Forge-${minecraft_version}"
// Use version from environment variable, if set
def envVersion = System.getenv('VERSION')
version = envVersion == null ? 'indev' : envVersion
java.toolchain.languageVersion = JavaLanguageVersion.of(16)
repositories {
mavenCentral()
mavenLocal()
maven {
// JEI
name = "Progwml6 maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
maven {
// Mirror for JEI
name = "ModMaven"
url = "https://modmaven.k-4u.nl"
}
maven {
name 'Jitpack'
url 'https://jitpack.io'
}
flatDir {
dirs 'libs'
}
}
minecraft {
mappings channel: mappingsChannel, version: mappingsVersion
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
runs {
client {
workingDirectory project.file('run')
args '-mixin.config=' + mod_id + '.mixins.json'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
property 'cyanide.client_self_test', 'net.dries007.tfc.client.ClientEventHandler#selfTest'
property 'cyanide.enable_dangerous_features', 'true'
jvmArg '-ea'
mods {
tfc {
source sourceSets.main
}
}
}
server {
workingDirectory project.file('run')
args '-mixin.config=' + mod_id + '.mixins.json', '--nogui'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
property 'cyanide.enable_dangerous_features', 'true'
jvmArg '-ea'
mods {
tfc {
source sourceSets.main
}
}
}
}
}
// Hack to fix a FG bug involving loading non-MC libraries
configurations {
library
implementation.extendsFrom library
}
minecraft.runs.all {
lazyToken('minecraft_classpath') {
configurations.library.copyRecursive().resolve().collect { it.absolutePath }.join(File.pathSeparator)
}
}
dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
runtimeOnly fg.deobf("com.github.alcatrazEscapee:cyanide:${cyanide_version}-${minecraft_version}") { transitive = false }
// runtimeOnly fg.deobf("libs:journeymap-1.17.1:5.7.3rc3") // File: libs/journey,ap-1.17.1-5.7.3rc3.jar
// JEI
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}:api")
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}")
if (System.getProperty("idea.sync.active") != "true") {
annotationProcessor "org.spongepowered:mixin:${mixin_version}:processor"
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}
test {
useJUnitPlatform()
}
processResources {
if (minifyResources) {
doLast {
fileTree(dir: outputs.files.asPath, include: "**/*.json").each { File file ->
file.text = file.text
.replace('"__comment__":"This file was automatically created by mcresources",', '')
}
}
}
}
idea {
module {
excludeDirs.add(file("run"))
}
}
// Automatically apply a license header when running checkLicense / updateLicense
license {
header = project.file('HEADER.txt')
include '**/*.java'
exclude 'net/dries007/tfc/world/noise/FastNoiseLite.java' // Fast Noise
}
// Puts the mod version into the jar for mods.toml to read from
jar {
manifest {
attributes ([
"Implementation-Version": "${project.version}",
"MixinConfigs": "${mod_id}.mixins.json"
])
}
}
mixin {
add sourceSets.main, "${mod_id}.refmap.json"
}