2019-08-26 04:45:03 +00:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
2021-05-14 21:42:37 +00:00
|
|
|
import org.gradle.api.Plugin
|
2019-08-26 04:45:03 +00:00
|
|
|
import org.gradle.api.Project
|
2020-08-14 19:29:15 +00:00
|
|
|
import org.gradle.api.artifacts.ExternalModuleDependency
|
2019-08-26 04:45:03 +00:00
|
|
|
import org.gradle.api.artifacts.ModuleDependency
|
2021-05-14 21:42:37 +00:00
|
|
|
import org.gradle.api.attributes.Bundling
|
|
|
|
import org.gradle.api.attributes.Category
|
|
|
|
import org.gradle.api.attributes.DocsType
|
|
|
|
import org.gradle.api.attributes.LibraryElements
|
|
|
|
import org.gradle.api.attributes.Usage
|
|
|
|
import org.gradle.api.attributes.java.TargetJvmVersion
|
|
|
|
import org.gradle.api.component.AdhocComponentWithVariants
|
|
|
|
import org.gradle.api.component.SoftwareComponentFactory
|
|
|
|
import org.gradle.api.publish.PublishingExtension
|
|
|
|
import org.gradle.api.publish.maven.MavenPublication
|
2019-08-26 04:45:03 +00:00
|
|
|
import org.gradle.api.tasks.bundling.Jar
|
|
|
|
import org.gradle.kotlin.dsl.apply
|
2021-05-14 21:42:37 +00:00
|
|
|
import org.gradle.kotlin.dsl.configure
|
2019-08-26 04:45:03 +00:00
|
|
|
import org.gradle.kotlin.dsl.get
|
|
|
|
import org.gradle.kotlin.dsl.invoke
|
2021-05-14 21:42:37 +00:00
|
|
|
import org.gradle.kotlin.dsl.named
|
2021-09-19 20:50:34 +00:00
|
|
|
import org.gradle.kotlin.dsl.provideDelegate
|
2019-08-26 04:45:03 +00:00
|
|
|
import org.gradle.kotlin.dsl.register
|
2021-11-25 12:14:49 +00:00
|
|
|
import org.gradle.kotlin.dsl.the
|
2021-11-22 12:38:32 +00:00
|
|
|
import org.gradle.plugins.signing.SigningExtension
|
2021-05-14 21:42:37 +00:00
|
|
|
import javax.inject.Inject
|
2019-08-26 04:45:03 +00:00
|
|
|
|
|
|
|
fun Project.applyLibrariesConfiguration() {
|
|
|
|
applyCommonConfiguration()
|
|
|
|
apply(plugin = "java-base")
|
2021-01-18 20:58:50 +00:00
|
|
|
apply(plugin = "maven-publish")
|
2019-08-26 04:45:03 +00:00
|
|
|
apply(plugin = "com.github.johnrengelman.shadow")
|
2021-11-22 12:38:32 +00:00
|
|
|
apply(plugin = "signing")
|
2019-08-26 04:45:03 +00:00
|
|
|
|
|
|
|
configurations {
|
|
|
|
create("shade")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "${rootProject.group}.worldedit-libs"
|
|
|
|
|
2020-11-09 09:38:10 +00:00
|
|
|
val relocations = mapOf(
|
2021-05-14 21:42:37 +00:00
|
|
|
"net.kyori.text" to "com.sk89q.worldedit.util.formatting.text",
|
2024-06-26 19:55:47 +00:00
|
|
|
"net.kyori.minecraft" to "com.sk89q.worldedit.util.kyori"
|
2021-07-01 20:16:25 +00:00
|
|
|
|
2020-11-09 09:38:10 +00:00
|
|
|
)
|
|
|
|
|
2019-08-26 04:45:03 +00:00
|
|
|
tasks.register<ShadowJar>("jar") {
|
|
|
|
configurations = listOf(project.configurations["shade"])
|
|
|
|
archiveClassifier.set("")
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
exclude(dependency("com.google.guava:guava"))
|
|
|
|
exclude(dependency("com.google.code.gson:gson"))
|
2021-11-29 23:16:19 +00:00
|
|
|
exclude(dependency("com.google.errorprone:error_prone_annotations"))
|
2024-06-26 19:55:47 +00:00
|
|
|
exclude(dependency("com.google.guava:failureaccess"))
|
2019-08-26 04:45:03 +00:00
|
|
|
exclude(dependency("org.checkerframework:checker-qual"))
|
2024-06-26 19:55:47 +00:00
|
|
|
exclude(dependency("org.jetbrains:annotations"))
|
2021-03-29 13:29:16 +00:00
|
|
|
exclude(dependency("org.apache.logging.log4j:log4j-api"))
|
2021-08-01 17:28:51 +00:00
|
|
|
exclude(dependency("com.google.code.findbugs:jsr305"))
|
2024-06-26 19:55:47 +00:00
|
|
|
exclude {
|
|
|
|
it.moduleGroup == "org.jetbrains.kotlin"
|
|
|
|
}
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 09:38:10 +00:00
|
|
|
relocations.forEach { (from, to) ->
|
|
|
|
relocate(from, to)
|
|
|
|
}
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
val altConfigFiles = { artifactType: String ->
|
|
|
|
val deps = configurations["shade"].incoming.dependencies
|
2021-05-14 21:42:37 +00:00
|
|
|
.filterIsInstance<ModuleDependency>()
|
|
|
|
.map { it.copy() }
|
|
|
|
.map { dependency ->
|
2024-06-26 19:55:47 +00:00
|
|
|
val category = dependency.attributes.getAttribute(Category.CATEGORY_ATTRIBUTE)?.name
|
|
|
|
if (category == Category.REGULAR_PLATFORM || category == Category.ENFORCED_PLATFORM) {
|
|
|
|
return@map dependency
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
dependency.artifact {
|
|
|
|
name = dependency.name
|
|
|
|
type = artifactType
|
|
|
|
extension = "jar"
|
|
|
|
classifier = artifactType
|
|
|
|
}
|
|
|
|
} catch (e: Exception) {
|
|
|
|
throw RuntimeException("Failed to add artifact to dependency: $dependency", e)
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
2021-05-14 21:42:37 +00:00
|
|
|
dependency
|
|
|
|
}
|
2019-08-26 04:45:03 +00:00
|
|
|
|
|
|
|
files(configurations.detachedConfiguration(*deps.toTypedArray())
|
2021-05-14 21:42:37 +00:00
|
|
|
.resolvedConfiguration.lenientConfiguration.artifacts
|
|
|
|
.filter { it.classifier == artifactType }
|
|
|
|
.map { zipTree(it.file) })
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
tasks.register<Jar>("sourcesJar") {
|
|
|
|
from({
|
|
|
|
altConfigFiles("sources")
|
|
|
|
})
|
2024-06-26 19:55:47 +00:00
|
|
|
|
|
|
|
// Yeet module-info's
|
|
|
|
exclude("module-info.java")
|
|
|
|
|
2020-11-09 09:38:10 +00:00
|
|
|
relocations.forEach { (from, to) ->
|
|
|
|
val filePattern = Regex("(.*)${from.replace('.', '/')}((?:/|$).*)")
|
|
|
|
val textPattern = Regex.fromLiteral(from)
|
|
|
|
eachFile {
|
|
|
|
filter {
|
|
|
|
it.replaceFirst(textPattern, to)
|
|
|
|
}
|
|
|
|
path = path.replaceFirst(filePattern, "$1${to.replace('.', '/')}$2")
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
archiveClassifier.set("sources")
|
|
|
|
}
|
|
|
|
|
2021-11-23 13:14:01 +00:00
|
|
|
// This a dummy jar to comply with the requirements of the OSSRH,
|
|
|
|
// libs are not API and therefore no "proper" javadoc jar is necessary
|
|
|
|
tasks.register<Jar>("javadocJar") {
|
|
|
|
archiveClassifier.set("javadoc")
|
|
|
|
}
|
|
|
|
|
2019-08-26 04:45:03 +00:00
|
|
|
tasks.named("assemble").configure {
|
2021-11-23 13:14:01 +00:00
|
|
|
dependsOn("jar", "sourcesJar", "javadocJar")
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2021-05-14 21:42:37 +00:00
|
|
|
project.apply<LibsConfigPluginHack>()
|
|
|
|
|
|
|
|
val libsComponent = project.components["libs"] as AdhocComponentWithVariants
|
|
|
|
|
|
|
|
val apiElements = project.configurations.register("apiElements") {
|
|
|
|
isVisible = false
|
|
|
|
description = "API elements for libs"
|
|
|
|
isCanBeResolved = false
|
|
|
|
isCanBeConsumed = true
|
|
|
|
attributes {
|
|
|
|
attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_API))
|
|
|
|
attribute(Category.CATEGORY_ATTRIBUTE, project.objects.named(Category.LIBRARY))
|
|
|
|
attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling.SHADOWED))
|
|
|
|
attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, project.objects.named(LibraryElements.JAR))
|
2024-05-19 11:32:18 +00:00
|
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 21)
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
2021-05-14 21:42:37 +00:00
|
|
|
outgoing.artifact(tasks.named("jar"))
|
|
|
|
}
|
|
|
|
|
|
|
|
val runtimeElements = project.configurations.register("runtimeElements") {
|
|
|
|
isVisible = false
|
|
|
|
description = "Runtime elements for libs"
|
|
|
|
isCanBeResolved = false
|
|
|
|
isCanBeConsumed = true
|
|
|
|
attributes {
|
|
|
|
attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_RUNTIME))
|
|
|
|
attribute(Category.CATEGORY_ATTRIBUTE, project.objects.named(Category.LIBRARY))
|
|
|
|
attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling.SHADOWED))
|
|
|
|
attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, project.objects.named(LibraryElements.JAR))
|
2024-05-19 11:32:18 +00:00
|
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 21)
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
2021-05-14 21:42:37 +00:00
|
|
|
outgoing.artifact(tasks.named("jar"))
|
|
|
|
}
|
|
|
|
|
|
|
|
val sourcesElements = project.configurations.register("sourcesElements") {
|
|
|
|
isVisible = false
|
|
|
|
description = "Source elements for libs"
|
|
|
|
isCanBeResolved = false
|
|
|
|
isCanBeConsumed = true
|
|
|
|
attributes {
|
|
|
|
attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_RUNTIME))
|
|
|
|
attribute(Category.CATEGORY_ATTRIBUTE, project.objects.named(Category.DOCUMENTATION))
|
|
|
|
attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling.SHADOWED))
|
|
|
|
attribute(DocsType.DOCS_TYPE_ATTRIBUTE, project.objects.named(DocsType.SOURCES))
|
|
|
|
}
|
|
|
|
outgoing.artifact(tasks.named("sourcesJar"))
|
|
|
|
}
|
|
|
|
|
2021-11-23 13:14:01 +00:00
|
|
|
val javadocElements = project.configurations.register("javadocElements") {
|
|
|
|
isVisible = false
|
|
|
|
description = "Javadoc elements for libs"
|
|
|
|
isCanBeResolved = false
|
|
|
|
isCanBeConsumed = true
|
|
|
|
attributes {
|
|
|
|
attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_RUNTIME))
|
|
|
|
attribute(Category.CATEGORY_ATTRIBUTE, project.objects.named(Category.DOCUMENTATION))
|
|
|
|
attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling.SHADOWED))
|
|
|
|
attribute(DocsType.DOCS_TYPE_ATTRIBUTE, project.objects.named(DocsType.JAVADOC))
|
|
|
|
}
|
|
|
|
outgoing.artifact(tasks.named("javadocJar"))
|
|
|
|
}
|
|
|
|
|
2021-05-14 21:42:37 +00:00
|
|
|
libsComponent.addVariantsFromConfiguration(apiElements.get()) {
|
|
|
|
mapToMavenScope("compile")
|
|
|
|
}
|
|
|
|
|
|
|
|
libsComponent.addVariantsFromConfiguration(runtimeElements.get()) {
|
|
|
|
mapToMavenScope("runtime")
|
|
|
|
}
|
|
|
|
|
|
|
|
libsComponent.addVariantsFromConfiguration(sourcesElements.get()) {
|
|
|
|
mapToMavenScope("runtime")
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2021-11-23 13:14:01 +00:00
|
|
|
libsComponent.addVariantsFromConfiguration(javadocElements.get()) {
|
|
|
|
mapToMavenScope("runtime")
|
|
|
|
}
|
|
|
|
|
2021-11-25 12:14:49 +00:00
|
|
|
val publishingExtension = the<PublishingExtension>()
|
|
|
|
|
2021-11-22 12:38:32 +00:00
|
|
|
configure<SigningExtension> {
|
|
|
|
if (!version.toString().endsWith("-SNAPSHOT")) {
|
|
|
|
val signingKey: String? by project
|
|
|
|
val signingPassword: String? by project
|
|
|
|
useInMemoryPgpKeys(signingKey, signingPassword)
|
|
|
|
isRequired
|
2021-11-25 12:14:49 +00:00
|
|
|
sign(publishingExtension.publications)
|
2021-11-22 12:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-14 21:42:37 +00:00
|
|
|
configure<PublishingExtension> {
|
|
|
|
publications {
|
|
|
|
register<MavenPublication>("maven") {
|
|
|
|
from(libsComponent)
|
2021-09-19 20:50:34 +00:00
|
|
|
|
|
|
|
group = "com.fastasyncworldedit"
|
2023-06-18 16:31:49 +00:00
|
|
|
artifactId = "FastAsyncWorldEdit-Libs-${project.name.replaceFirstChar(Char::titlecase)}"
|
2021-09-19 20:50:34 +00:00
|
|
|
version = version
|
|
|
|
|
|
|
|
pom {
|
|
|
|
name.set("${rootProject.name}-Libs" + " " + project.version)
|
|
|
|
description.set("Blazingly fast Minecraft world manipulation for artists, builders and everyone else.")
|
|
|
|
url.set("https://github.com/IntellectualSites/FastAsyncWorldEdit")
|
|
|
|
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name.set("GNU General Public License, Version 3.0")
|
|
|
|
url.set("https://www.gnu.org/licenses/gpl-3.0.html")
|
|
|
|
distribution.set("repo")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id.set("NotMyFault")
|
2022-05-07 14:14:40 +00:00
|
|
|
name.set("Alexander Brandes")
|
2023-03-02 19:52:12 +00:00
|
|
|
email.set("contact(at)notmyfault.dev")
|
2021-09-19 20:50:34 +00:00
|
|
|
organization.set("IntellectualSites")
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id.set("SirYwell")
|
|
|
|
name.set("Hannes Greule")
|
|
|
|
organization.set("IntellectualSites")
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id.set("dordsor21")
|
|
|
|
name.set("dordsor21")
|
|
|
|
organization.set("IntellectualSites")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scm {
|
|
|
|
url.set("https://github.com/IntellectualSites/FastAsyncWorldEdit")
|
2023-10-04 09:04:35 +00:00
|
|
|
connection.set("scm:git:https://github.com/IntellectualSites/FastAsyncWorldEdit.git")
|
|
|
|
developerConnection.set("scm:git:git@github.com:IntellectualSites/FastAsyncWorldEdit.git")
|
|
|
|
tag.set("${project.version}")
|
2021-09-19 20:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
issueManagement {
|
|
|
|
system.set("GitHub")
|
|
|
|
url.set("https://github.com/IntellectualSites/FastAsyncWorldEdit/issues")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-22 12:38:32 +00:00
|
|
|
}
|
2021-09-19 20:50:34 +00:00
|
|
|
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
2020-08-14 19:29:15 +00:00
|
|
|
|
2021-05-14 21:42:37 +00:00
|
|
|
// A horrible hack because `softwareComponentFactory` has to be gotten via plugin
|
|
|
|
// gradle why
|
|
|
|
internal open class LibsConfigPluginHack @Inject constructor(
|
|
|
|
private val softwareComponentFactory: SoftwareComponentFactory
|
|
|
|
) : Plugin<Project> {
|
|
|
|
override fun apply(project: Project) {
|
|
|
|
val libsComponents = softwareComponentFactory.adhoc("libs")
|
|
|
|
project.components.add(libsComponents)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-14 19:29:15 +00:00
|
|
|
fun Project.constrainDependenciesToLibsCore() {
|
|
|
|
evaluationDependsOn(":worldedit-libs:core")
|
|
|
|
val coreDeps = project(":worldedit-libs:core").configurations["shade"].dependencies
|
|
|
|
.filterIsInstance<ExternalModuleDependency>()
|
|
|
|
dependencies.constraints {
|
|
|
|
for (coreDep in coreDeps) {
|
|
|
|
add("shade", "${coreDep.group}:${coreDep.name}:${coreDep.version}") {
|
|
|
|
because("libs should align with libs:core")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|