2023-08-10 16:26:51 +02:00
|
|
|
import io.papermc.hangarpublishplugin.model.Platforms
|
2021-02-23 11:29:18 +01:00
|
|
|
|
2021-05-29 09:32:55 +02:00
|
|
|
plugins {
|
2023-08-26 12:05:17 +02:00
|
|
|
id("io.papermc.hangar-publish-plugin") version "0.1.0"
|
2023-08-10 16:26:51 +02:00
|
|
|
id("com.modrinth.minotaur") version "2.+"
|
2021-05-29 09:32:55 +02:00
|
|
|
}
|
|
|
|
|
2023-11-06 05:45:30 +01:00
|
|
|
dependencies {
|
|
|
|
api(projects.viabackwardsCommon)
|
|
|
|
api(projects.viabackwardsBukkit)
|
|
|
|
api(projects.viabackwardsBungee)
|
|
|
|
api(projects.viabackwardsFabric)
|
|
|
|
api(projects.viabackwardsSponge)
|
|
|
|
api(projects.viabackwardsVelocity)
|
|
|
|
}
|
2021-05-29 09:32:55 +02:00
|
|
|
|
2021-02-18 14:34:33 +01:00
|
|
|
tasks {
|
2021-05-29 09:32:55 +02:00
|
|
|
shadowJar {
|
2021-02-18 14:34:33 +01:00
|
|
|
archiveFileName.set("ViaBackwards-${project.version}.jar")
|
|
|
|
destinationDirectory.set(rootProject.projectDir.resolve("build/libs"))
|
2021-02-23 11:29:18 +01:00
|
|
|
}
|
2021-02-18 14:34:33 +01:00
|
|
|
}
|
2021-05-29 09:32:55 +02:00
|
|
|
|
2023-08-10 16:26:51 +02:00
|
|
|
val branch = rootProject.branchName()
|
2023-08-11 07:54:59 +02:00
|
|
|
val baseVersion = project.version as String
|
|
|
|
val isRelease = !baseVersion.contains('-')
|
2023-08-10 16:26:51 +02:00
|
|
|
val isMainBranch = branch == "master"
|
2023-09-25 16:24:36 +02:00
|
|
|
if (!isRelease || isMainBranch) { // Only publish releases from the main branch
|
|
|
|
val suffixedVersion = if (isRelease) baseVersion else baseVersion + "+" + System.getenv("GITHUB_RUN_NUMBER")
|
|
|
|
val changelogContent = if (isRelease) {
|
|
|
|
"See [GitHub](https://github.com/ViaVersion/ViaBackwards) for release notes."
|
|
|
|
} else {
|
|
|
|
val commitHash = rootProject.latestCommitHash()
|
|
|
|
"[$commitHash](https://github.com/ViaVersion/ViaBackwards/commit/$commitHash) ${rootProject.latestCommitMessage()}"
|
2023-08-10 16:26:51 +02:00
|
|
|
}
|
2023-09-25 16:24:36 +02:00
|
|
|
modrinth {
|
|
|
|
// val snapshotVersion = rootProject.parseMinecraftSnapshotVersion(project.version as String)
|
|
|
|
val mcVersions: List<String> = (property("mcVersions") as String)
|
|
|
|
.split(",")
|
|
|
|
.map { it.trim() }
|
|
|
|
//.let { if (snapshotVersion != null) it + snapshotVersion else it } // We're usually too fast for modrinth
|
2023-08-10 16:26:51 +02:00
|
|
|
|
2023-09-25 16:24:36 +02:00
|
|
|
token.set(System.getenv("MODRINTH_TOKEN"))
|
|
|
|
projectId.set("viabackwards")
|
|
|
|
versionType.set(if (isRelease) "release" else if (isMainBranch) "beta" else "alpha")
|
|
|
|
versionNumber.set(suffixedVersion)
|
|
|
|
versionName.set(suffixedVersion)
|
2023-08-11 12:34:24 +02:00
|
|
|
changelog.set(changelogContent)
|
2023-09-25 16:24:36 +02:00
|
|
|
uploadFile.set(tasks.shadowJar.flatMap { it.archiveFile })
|
|
|
|
gameVersions.set(mcVersions)
|
|
|
|
loaders.add("fabric")
|
|
|
|
loaders.add("paper")
|
|
|
|
loaders.add("folia")
|
|
|
|
loaders.add("velocity")
|
|
|
|
loaders.add("bungeecord")
|
|
|
|
loaders.add("sponge")
|
|
|
|
autoAddDependsOn.set(false)
|
|
|
|
detectLoaders.set(false)
|
|
|
|
dependencies {
|
|
|
|
optional.project("viaversion")
|
|
|
|
optional.project("viafabric")
|
|
|
|
optional.project("viafabricplus")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hangarPublish {
|
|
|
|
publications.register("plugin") {
|
|
|
|
version.set(suffixedVersion)
|
|
|
|
id.set("ViaBackwards")
|
|
|
|
channel.set(if (isRelease) "Release" else if (isMainBranch) "Snapshot" else "Alpha")
|
|
|
|
changelog.set(changelogContent)
|
|
|
|
apiKey.set(System.getenv("HANGAR_TOKEN"))
|
|
|
|
platforms {
|
|
|
|
register(Platforms.PAPER) {
|
|
|
|
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
|
|
|
platformVersions.set(listOf(property("mcVersionRange") as String))
|
|
|
|
dependencies {
|
|
|
|
hangar("ViaVersion") {
|
|
|
|
required.set(true)
|
|
|
|
}
|
2023-08-10 16:26:51 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-25 16:24:36 +02:00
|
|
|
register(Platforms.VELOCITY) {
|
|
|
|
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
|
|
|
platformVersions.set(listOf(property("velocityVersion") as String))
|
|
|
|
dependencies {
|
|
|
|
hangar("ViaVersion") {
|
|
|
|
required.set(true)
|
|
|
|
}
|
2023-08-10 16:26:51 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-25 16:24:36 +02:00
|
|
|
register(Platforms.WATERFALL) {
|
|
|
|
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
|
|
|
platformVersions.set(listOf(property("waterfallVersion") as String))
|
|
|
|
dependencies {
|
|
|
|
hangar("ViaVersion") {
|
|
|
|
required.set(true)
|
|
|
|
}
|
2023-08-10 16:26:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|