-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
188 lines (148 loc) · 4.34 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
//file:noinspection all
buildscript {
dependencies {
classpath 'org.kohsuke:github-api:1.+'
}
}
plugins {
id "fabric-loom" version "1.4-SNAPSHOT"
id "maven-publish"
id "org.jetbrains.kotlin.jvm" version "1.9.+"
id 'com.matthewprenger.cursegradle' version '1.+'
id 'com.modrinth.minotaur' version '2.+'
}
import com.modrinth.minotaur.dependencies.DependencyType
import com.modrinth.minotaur.dependencies.ModDependency
import org.kohsuke.github.GHReleaseBuilder
version = mod_version
group = maven_group
repositories {
maven {
name = "Terraformers"
url = "https://maven.terraformersmc.com/releases/"
}
}
dependencies {
minecraft "com.mojang:minecraft:$minecraft_version"
mappings "net.fabricmc:yarn:$minecraft_version+build.$yarn_build:v2"
modImplementation "net.fabricmc:fabric-loader:$loader_version"
modImplementation "net.fabricmc.fabric-api:fabric-api:$fabric_version"
modImplementation "net.fabricmc:fabric-language-kotlin:$fabric_kotlin_version"
modImplementation "com.terraformersmc:modmenu:$mod_menu_version"
}
loom {
splitEnvironmentSourceSets()
mods {
mod_id {
sourceSet sourceSets.main
sourceSet sourceSets.client
}
}
accessWidenerPath = file("src/main/resources/${mod_id}.accesswidener")
runs {
datagen {
inherit server
name "Data Generation"
vmArg "-Dfabric-api.datagen"
vmArg "-Dfabric-api.datagen.output-dir=${file("src/generated/resources")}"
vmArg "-Dfabric-api.datagen.modid=$mod_id"
runDir "build/datagen"
}
}
}
sourceSets {
main {
resources {
srcDirs += [
"src/generated/resources"
]
}
}
}
processResources {
inputs.property "version", version
filesMatching("fabric.mod.json") {
expand "version": version
}
}
tasks.withType(JavaCompile).configureEach {
it.options.release = 17
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = 17
}
}
java {
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
jar {
from ("LICENSE", "LICENSE_ASSETS")
exclude (".cache")
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
}
}
/* Releasing */
def environment = System.getenv()
def versionText = "[$major_version] $mod_name $version"
def changelogText = new File("./gradle", "CHANGELOG.md").text
def supportedVersions = Arrays.asList(supported_versions.split(","))
tasks.register("github") {
onlyIf { environment.GITHUB_TOKEN }
dependsOn(build)
doLast {
def github = GitHub.connectUsingOAuth(environment.GITHUB_TOKEN)
def repository = github.getRepository(github_repository)
def builder = new GHReleaseBuilder(repository, version)
builder.name(versionText)
builder.body(changelogText)
builder.commitish(github_branch)
builder.prerelease(release_type == "beta")
builder.create().uploadAsset(file("${buildDir}/libs/${archivesBaseName}-${version}.jar"), "application/java-archive");
}
}
if (environment.MODRINTH_TOKEN) modrinth {
token = environment.MODRINTH_TOKEN
projectId = modrinth_id
versionNumber = version
versionName = versionText
versionType = release_type
changelog = changelogText
uploadFile = remapJar
gameVersions = supportedVersions
dependencies = [
new ModDependency("fabric-api", DependencyType.REQUIRED),
new ModDependency("fabric-language-kotlin", DependencyType.REQUIRED),
]
}
if (environment.CURSEFORGE_API_KEY) curseforge {
apiKey = environment.CURSEFORGE_API_KEY
project {
id = curseforge_id
addGameVersion "Fabric"
for (final def cf_ver in supportedVersions) addGameVersion cf_ver
changelog = changelogText
releaseType = release_type
mainArtifact(remapJar) {
displayName = versionText
relations {
requiredDependency "fabric-api"
requiredDependency "fabric-language-kotlin"
}
}
afterEvaluate { uploadTask.dependsOn(remapJar) }
}
options { forgeGradleIntegration = false }
}
tasks.register("releaseVersion").configure {
dependsOn("build", "modrinth", "github", "curseforge")
}