|
|
|
|
@ -1,16 +1,27 @@
|
|
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
|
import org.gradle.api.Plugin
|
|
|
|
|
import org.gradle.api.Project
|
|
|
|
|
import org.gradle.api.artifacts.ExternalModuleDependency
|
|
|
|
|
import org.gradle.api.artifacts.ModuleDependency
|
|
|
|
|
import org.gradle.api.internal.HasConvention
|
|
|
|
|
import org.gradle.api.plugins.MavenRepositoryHandlerConvention
|
|
|
|
|
import org.gradle.api.tasks.Upload
|
|
|
|
|
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
|
|
|
|
|
import org.gradle.api.tasks.bundling.Jar
|
|
|
|
|
import org.gradle.kotlin.dsl.apply
|
|
|
|
|
import org.gradle.kotlin.dsl.configure
|
|
|
|
|
import org.gradle.kotlin.dsl.get
|
|
|
|
|
import org.gradle.kotlin.dsl.getPlugin
|
|
|
|
|
import org.gradle.kotlin.dsl.invoke
|
|
|
|
|
import org.gradle.kotlin.dsl.named
|
|
|
|
|
import org.gradle.kotlin.dsl.register
|
|
|
|
|
import javax.inject.Inject
|
|
|
|
|
|
|
|
|
|
fun Project.applyLibrariesConfiguration() {
|
|
|
|
|
applyCommonConfiguration()
|
|
|
|
|
@ -20,14 +31,13 @@ fun Project.applyLibrariesConfiguration() {
|
|
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
|
create("shade")
|
|
|
|
|
getByName("archives").extendsFrom(getByName("default"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group = "${rootProject.group}.worldedit-libs"
|
|
|
|
|
|
|
|
|
|
val relocations = mapOf(
|
|
|
|
|
"net.kyori.text" to "com.sk89q.worldedit.util.formatting.text",
|
|
|
|
|
"net.kyori.minecraft" to "com.sk89q.worldedit.util.kyori"
|
|
|
|
|
"net.kyori.text" to "com.sk89q.worldedit.util.formatting.text",
|
|
|
|
|
"net.kyori.minecraft" to "com.sk89q.worldedit.util.kyori",
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
tasks.register<ShadowJar>("jar") {
|
|
|
|
|
@ -47,22 +57,22 @@ fun Project.applyLibrariesConfiguration() {
|
|
|
|
|
}
|
|
|
|
|
val altConfigFiles = { artifactType: String ->
|
|
|
|
|
val deps = configurations["shade"].incoming.dependencies
|
|
|
|
|
.filterIsInstance<ModuleDependency>()
|
|
|
|
|
.map { it.copy() }
|
|
|
|
|
.map { dependency ->
|
|
|
|
|
dependency.artifact {
|
|
|
|
|
name = dependency.name
|
|
|
|
|
type = artifactType
|
|
|
|
|
extension = "jar"
|
|
|
|
|
classifier = artifactType
|
|
|
|
|
}
|
|
|
|
|
dependency
|
|
|
|
|
.filterIsInstance<ModuleDependency>()
|
|
|
|
|
.map { it.copy() }
|
|
|
|
|
.map { dependency ->
|
|
|
|
|
dependency.artifact {
|
|
|
|
|
name = dependency.name
|
|
|
|
|
type = artifactType
|
|
|
|
|
extension = "jar"
|
|
|
|
|
classifier = artifactType
|
|
|
|
|
}
|
|
|
|
|
dependency
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
files(configurations.detachedConfiguration(*deps.toTypedArray())
|
|
|
|
|
.resolvedConfiguration.lenientConfiguration.artifacts
|
|
|
|
|
.filter { it.classifier == artifactType }
|
|
|
|
|
.map { zipTree(it.file) })
|
|
|
|
|
.resolvedConfiguration.lenientConfiguration.artifacts
|
|
|
|
|
.filter { it.classifier == artifactType }
|
|
|
|
|
.map { zipTree(it.file) })
|
|
|
|
|
}
|
|
|
|
|
tasks.register<Jar>("sourcesJar") {
|
|
|
|
|
from({
|
|
|
|
|
@ -85,25 +95,85 @@ fun Project.applyLibrariesConfiguration() {
|
|
|
|
|
dependsOn("jar", "sourcesJar")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
|
val jar = tasks.named("jar")
|
|
|
|
|
add("default", jar) {
|
|
|
|
|
builtBy(jar)
|
|
|
|
|
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))
|
|
|
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 11)
|
|
|
|
|
}
|
|
|
|
|
val sourcesJar = tasks.named("sourcesJar")
|
|
|
|
|
add("archives", sourcesJar) {
|
|
|
|
|
builtBy(sourcesJar)
|
|
|
|
|
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))
|
|
|
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 11)
|
|
|
|
|
}
|
|
|
|
|
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"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libsComponent.addVariantsFromConfiguration(apiElements.get()) {
|
|
|
|
|
mapToMavenScope("compile")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libsComponent.addVariantsFromConfiguration(runtimeElements.get()) {
|
|
|
|
|
mapToMavenScope("runtime")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libsComponent.addVariantsFromConfiguration(sourcesElements.get()) {
|
|
|
|
|
mapToMavenScope("runtime")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
configure<PublishingExtension> {
|
|
|
|
|
publications {
|
|
|
|
|
register<MavenPublication>("maven") {
|
|
|
|
|
from(libsComponent)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.register<Upload>("install") {
|
|
|
|
|
configuration = configurations["archives"]
|
|
|
|
|
(repositories as HasConvention).convention.getPlugin<MavenRepositoryHandlerConvention>().mavenInstaller {
|
|
|
|
|
pom.version = project.version.toString()
|
|
|
|
|
pom.artifactId = project.name
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun Project.constrainDependenciesToLibsCore() {
|
|
|
|
|
|