forked from Potion-Studios/BYG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
93 lines (79 loc) · 3.11 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
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
plugins {
id 'java'
id 'idea'
id 'com.matyrobbrt.mc.registrationutils' version '1.19.3-2.0.2'
}
registrationUtils {
group 'potionstudios.byg.reg'
projects {
Common { type 'common'; project ':Common' }
Fabric { type 'fabric'; project ':Fabric' }
Forge { type 'forge'; project ':Forge' }
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
java.withSourcesJar()
java.withJavadocJar()
dependencies {
compileOnly group: 'com.google.auto.service', name: 'auto-service', version: '1.1.1'
annotationProcessor group: 'com.google.auto.service', name: 'auto-service', version: '1.1.1'
}
jar {
manifest {
attributes([
'Specification-Title' : mod_name,
'Specification-Vendor' : mod_author,
'Specification-Version' : project.jar.archiveVersion,
'Implementation-Title' : project.name,
'Implementation-Version' : project.jar.archiveVersion,
'Implementation-Vendor' : mod_author,
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
'Timestamp' : System.currentTimeMillis(),
'Built-On-Java' : "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})",
'Build-On-Minecraft' : minecraft_version
])
}
}
repositories {
mavenCentral()
maven {
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven { url = 'https://maven.minecraftforge.net' }
maven { url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/' }
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release.set(17)
}
if (project.name != 'Common')
jar {
doLast {
// Minifies all .json files when building the mod.
// Source files are not minified, only the jar copies.
def jsonMinifyStart = System.currentTimeMillis()
def jsonMinified = 0
def jsonBytesSaved = 0
fileTree(dir: processResources.outputs.files.asPath, include: '**/*.json').each {
jsonMinified++
def oldLength = it.length()
it.text = JsonOutput.toJson(new JsonSlurper().parse(it))
jsonBytesSaved += oldLength - it.length()
}
println('Minified ' + jsonMinified + ' json files. Saved ' + jsonBytesSaved + ' bytes. Took ' + (System.currentTimeMillis() - jsonMinifyStart) + 'ms.')
}
}
}