-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle.kts
126 lines (110 loc) · 5.01 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
import com.hypherionmc.modpublisher.properties.CurseEnvironment
import com.hypherionmc.modpublisher.properties.ReleaseType
import net.fabricmc.loom.api.LoomGradleExtensionAPI
plugins {
id("architectury-plugin") version "3.4-SNAPSHOT"
id("dev.architectury.loom") version "1.9-SNAPSHOT" apply false
id("com.gradleup.shadow") version "8.3.5" apply false
id("com.hypherionmc.modutils.modpublisher") version "2.+"
java
idea
`maven-publish`
}
val minecraftVersion = project.properties["minecraft_version"] as String
architectury.minecraft = minecraftVersion
allprojects {
version = project.properties["mod_version"] as String
group = project.properties["maven_group"] as String
}
subprojects {
apply(plugin = "dev.architectury.loom")
apply(plugin = "architectury-plugin")
apply(plugin = "maven-publish")
apply(plugin = "com.hypherionmc.modutils.modpublisher")
base.archivesName.set(project.properties["archives_base_name"] as String + "-${project.name}")
val loom = project.extensions.getByName<LoomGradleExtensionAPI>("loom")
loom.silentMojangMappingsLicense()
loom.mixin.useLegacyMixinAp.set(false)
repositories {
mavenCentral()
mavenLocal()
maven("https://maven.parchmentmc.org")
maven("https://maven.fabricmc.net/")
maven("https://maven.minecraftforge.net/")
maven("https://maven.neoforged.net/releases/")
maven("https://maven.architectury.dev/")
maven("https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/").content { includeGroup("software.bernie.geckolib") }
maven("https://maven.jt-dev.tech/releases")
maven("https://maven.jt-dev.tech/snapshots")
maven("https://api.modrinth.com/maven").content { includeGroup("maven.modrinth") }
maven("https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1")
maven("https://jitpack.io")
maven("https://maven2.bai.lol").content {
includeGroup("lol.bai")
includeGroup("mcp.mobius.waila")
}
}
@Suppress("UnstableApiUsage")
dependencies {
"minecraft"("com.mojang:minecraft:$minecraftVersion")
"mappings"(loom.layered{
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-$minecraftVersion:${project.properties["parchment"]}@zip")
})
compileOnly("org.jetbrains:annotations:26.0.1")
compileOnly("com.google.auto.service:auto-service:1.1.1")
annotationProcessor("com.google.auto.service:auto-service:1.1.1")
}
java {
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
tasks.withType<JavaCompile>().configureEach {
options.release.set(21)
}
publishing {
publications.create<MavenPublication>("mavenJava") {
artifactId = base.archivesName.get()
from(components["java"])
}
repositories {
mavenLocal()
maven {
val releasesRepoUrl = "https://maven.jt-dev.tech/releases"
val snapshotsRepoUrl = "https://maven.jt-dev.tech/snapshots"
url = uri(if (project.version.toString().endsWith("SNAPSHOT") || project.version.toString().startsWith("0")) snapshotsRepoUrl else releasesRepoUrl)
name = "JTDev-Maven-Repository"
credentials {
username = project.properties["repoLogin"]?.toString()
password = project.properties["repoPassword"]?.toString()
}
}
}
}
if (project.name != "Common")
publisher {
apiKeys {
curseforge(getPublishingCredentials().first)
modrinth(getPublishingCredentials().second)
github(project.properties["github_token"].toString())
}
displayName.set(base.archivesName.get() + "-${project.version}")
artifact.set(project.tasks.getByName("remapJar"))
projectVersion.set(project.version.toString() + "-${project.name}")
changelog.set(projectDir.toPath().parent.resolve("CHANGELOG.md").toFile().readLines().take(100).joinToString("\n"))
curseID.set("1070751")
modrinthID.set("NTi7d3Xc")
githubRepo.set("https://github.com/Potion-Studios/Oh-The-Biomes-Weve-Gone")
setReleaseType(ReleaseType.RELEASE)
setGameVersions(minecraftVersion)
setCurseEnvironment(CurseEnvironment.BOTH)
setJavaVersions(JavaVersion.VERSION_21, JavaVersion.VERSION_22)
modrinthDepends.optional.set(mutableListOf("wthit"))
}
}
private fun getPublishingCredentials(): Pair<String?, String?> {
val curseForgeToken = (project.findProperty("curseforge_token") ?: System.getenv("CURSEFORGE_TOKEN") ?: "") as String?
val modrinthToken = (project.findProperty("modrinth_token") ?: System.getenv("MODRINTH_TOKEN") ?: "") as String?
return Pair(curseForgeToken, modrinthToken)
}