-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
164 lines (136 loc) · 3.19 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
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
import java.time.Instant
plugins {
id 'base'
id 'java'
id 'maven-publish'
id 'net.neoforged.moddev' version "2.0.75"
id "me.shedaniel.unified-publishing" version "0.1.+"
}
ext.ENV = System.getenv()
def isLocal = !ENV.containsKey("GITHUB_RUN_NUMBER")
version = "${mod_version}-${isLocal ? "local.${Instant.now().epochSecond}" : "build.${ENV.GITHUB_RUN_NUMBER}"}"
group = project.maven_group
base.archivesBaseName = project.archives_base_name
println("Building version: ${version}")
neoForge {
version = project.neoforge_version
runs {
configureEach {
logLevel = org.slf4j.event.Level.INFO
}
client {
client()
if (ENV.MC_CLIENT_ARGS) {
programArguments.addAll(ENV.MC_CLIENT_ARGS.split(' '))
}
jvmArguments.addAll("-XX:+IgnoreUnrecognizedVMOptions", "-XX:+AllowEnhancedClassRedefinition")
gameDirectory = file 'run'
}
server {
server()
programArgument("--nogui")
gameDirectory = file 'run_server'
}
}
mods {
rhino {
sourceSet sourceSets.main
}
}
}
compileJava {
options.encoding = "UTF-8"
options.release.set(21)
}
java {
sourceCompatibility = targetCompatibility = '21'
withSourcesJar()
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// Unit Testing
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit_version"
}
test {
useJUnitPlatform()
}
processResources {
def toReplace = [
"version": project.version
]
println("[Process Resources] Replacing properties in resources: " + toReplace)
inputs.properties toReplace
filesMatching("META-INF/neoforge.mods.toml") {
expand toReplace
}
filesMatching("META-INF/mods.toml") {
expand toReplace
}
filesMatching("fabric.mod.json") {
expand toReplace
}
}
jar {
manifest {
attributes([
"Specification-Title" : project.mod_id,
"Specification-Vendor" : project.mod_author,
"Specification-Version" : "1",
"Implementation-Title" : project.name,
"Implementation-Version" : version,
"Implementation-Vendor" : project.mod_author,
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
publishing {
publications {
mavenNeoForge(MavenPublication) {
artifactId = archives_base_name
from components.java
}
}
repositories {
if (ENV.MAVEN_URL && ENV.MAVEN_USERNAME && ENV.MAVEN_TOKEN) {
maven {
url = ENV.MAVEN_URL
credentials {
username = ENV.MAVEN_USERNAME
password = ENV.MAVEN_TOKEN
}
}
}
}
}
unifiedPublishing {
project {
releaseType = "${ENV.RELEASE_TYPE ?: 'release'}"
gameVersions = Arrays.asList(rootProject.supported_versions.split(', '))
gameLoaders = ["neoforge", "forge", "fabric"]
displayName = "$mod_name $project.version"
changelog = 'https://github.com/KubeJS-Mods/Rhino/commits/main'
mainPublication jar
if (ENV.CURSEFORGE_KEY) {
curseforge {
token = ENV.CURSEFORGE_KEY
id = project.curseforge_id
}
}
if (ENV.MODRINTH_TOKEN) {
modrinth {
token = ENV.MODRINTH_TOKEN
id = project.modrinth_id
version = "$project.version+$project.name"
}
}
}
}
afterEvaluate {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}