-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle.kts
175 lines (147 loc) · 6.37 KB
/
build.gradle.kts
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
import dev.architectury.plugin.ArchitectPluginExtension
import groovy.json.StringEscapeUtils
import net.fabricmc.loom.api.LoomGradleExtensionAPI
import net.fabricmc.loom.task.RemapJarTask
plugins {
java
id("maven-publish")
id("com.teamresourceful.resourcefulgradle") version "0.0.+"
id("dev.architectury.loom") version "1.2-SNAPSHOT" apply false
id("architectury-plugin") version "3.4-SNAPSHOT" apply false
id("io.github.juuxel.loom-quiltflower") version "1.8.0" apply false
}
subprojects {
apply(plugin = "maven-publish")
apply(plugin = "dev.architectury.loom")
apply(plugin = "architectury-plugin")
apply(plugin = "io.github.juuxel.loom-quiltflower")
val minecraftVersion: String by project
val modLoader = project.name
val modId = rootProject.name
val isCommon = modLoader == rootProject.projects.common.name
base {
archivesName.set("${rootProject.name}-$modLoader-$minecraftVersion")
}
configure<LoomGradleExtensionAPI> {
silentMojangMappingsLicense()
}
repositories {
maven(url = "https://maven.architectury.dev/")
maven(url = "https://maven.minecraftforge.net/")
maven(url = "https://maven.teamresourceful.com/repository/maven-public/")
mavenCentral()
}
dependencies {
val resourcefulLibVersion: String by project
val hermesLibVersion: String by project
val mixinExtrasVersion: String by project
val reiVersion: String by project
val emiVersion: String by project
val jeiVersion: String by project
"minecraft"("::${minecraftVersion}")
@Suppress("UnstableApiUsage")
"mappings"(project.the<LoomGradleExtensionAPI>().layered {
val parchmentVersion: String by project
officialMojangMappings()
parchment(create(group = "org.parchmentmc.data", name = "parchment-$minecraftVersion", version = parchmentVersion))
})
compileOnly(group = "org.jetbrains", name = "annotations", version = "24.0.1")
"modImplementation"(group = "com.teamresourceful.resourcefullib", name = "resourcefullib-$modLoader-$minecraftVersion", version = resourcefulLibVersion)
val hermes = "modImplementation"(group = "earth.terrarium.hermes", name = "hermes-$modLoader-1.20", version = "latest.release") {
isTransitive = false
}
implementation("annotationProcessor"(group = "io.github.llamalad7", name = "mixinextras-common", version = mixinExtrasVersion))
if (!isCommon) {
"annotationProcessor"(group = "io.github.llamalad7", name = "mixinextras-$modLoader", version = mixinExtrasVersion).apply {
implementation(this)
"include"(this)
}
"include"(hermes)
// "modRuntimeOnly"("me.shedaniel:RoughlyEnoughItems-$modLoader:$reiVersion")
"modCompileOnly"("me.shedaniel:RoughlyEnoughItems-$modLoader:$reiVersion")
"modCompileOnly"("me.shedaniel:RoughlyEnoughItems-api-$modLoader:$reiVersion")
"modCompileOnly"("me.shedaniel:RoughlyEnoughItems-default-plugin-$modLoader:$reiVersion")
"modCompileOnly"(group = "dev.emi", name = "emi-$modLoader", version = "$emiVersion+$minecraftVersion", classifier = "api")
"modLocalRuntime"(group = "dev.emi", name = "emi-$modLoader", version = "$emiVersion+$minecraftVersion")
} else {
"modCompileOnly"(group = "dev.emi", name = "emi-xplat-intermediary", version = "$emiVersion+$minecraftVersion", classifier = "api")
"modApi"(group = "mezz.jei", name = "jei-$minecraftVersion-common-api", version = jeiVersion)
"modCompileOnly"("me.shedaniel:RoughlyEnoughItems-api:$reiVersion")
"modCompileOnly"("me.shedaniel:RoughlyEnoughItems-default-plugin:$reiVersion")
}
}
java {
withSourcesJar()
}
tasks.jar {
archiveClassifier.set("dev")
}
tasks.named<RemapJarTask>("remapJar") {
archiveClassifier.set(null as String?)
}
if (!isCommon) {
configure<ArchitectPluginExtension> {
platformSetupLoomIde()
}
sourceSets.main {
val main = this
rootProject.projects.common.dependencyProject.sourceSets.main {
main.java.source(java)
main.resources.source(resources)
}
}
dependencies {
compileOnly(rootProject.projects.common)
}
}
publishing {
publications {
create<MavenPublication>("maven") {
artifactId = "$modId-$modLoader-$minecraftVersion"
from(components["java"])
pom {
name.set("Heracles $modLoader")
url.set("https://github.com/terrarium-earth/$modId")
scm {
connection.set("git:https://github.com/terrarium-earth/$modId.git")
developerConnection.set("git:https://github.com/terrarium-earth/$modId.git")
url.set("https://github.com/terrarium-earth/$modId")
}
licenses {
license {
name.set("MIT")
}
}
}
}
}
repositories {
maven {
setUrl("https://maven.resourcefulbees.com/repository/terrarium/")
credentials {
username = System.getenv("MAVEN_USER")
password = System.getenv("MAVEN_PASS")
}
}
}
}
}
resourcefulGradle {
templates {
register("embed") {
val minecraftVersion: String by project
val version: String by project
val changelog: String = file("changelog.md").readText(Charsets.UTF_8)
val fabricLink: String? = System.getenv("FABRIC_RELEASE_URL")
val forgeLink: String? = System.getenv("FORGE_RELEASE_URL")
source.set(file("templates/embed.json.template"))
injectedValues.set(mapOf(
"minecraft" to minecraftVersion,
"version" to version,
"changelog" to StringEscapeUtils.escapeJava(changelog),
"fabric_link" to fabricLink,
"forge_link" to forgeLink,
))
}
}
}