2019-08-26 04:45:03 +00:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
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
|
|
|
|
import org.gradle.api.internal.HasConvention
|
|
|
|
import org.gradle.api.plugins.MavenRepositoryHandlerConvention
|
|
|
|
import org.gradle.api.tasks.Upload
|
|
|
|
import org.gradle.api.tasks.bundling.Jar
|
|
|
|
import org.gradle.kotlin.dsl.apply
|
|
|
|
import org.gradle.kotlin.dsl.get
|
|
|
|
import org.gradle.kotlin.dsl.getPlugin
|
|
|
|
import org.gradle.kotlin.dsl.invoke
|
|
|
|
import org.gradle.kotlin.dsl.register
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
create("shade")
|
|
|
|
getByName("archives").extendsFrom(getByName("default"))
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "${rootProject.group}.worldedit-libs"
|
|
|
|
|
2020-11-09 09:38:10 +00:00
|
|
|
val relocations = mapOf(
|
|
|
|
"net.kyori.text" to "com.sk89q.worldedit.util.formatting.text",
|
|
|
|
"net.kyori.minecraft" to "com.sk89q.worldedit.util.kyori"
|
|
|
|
)
|
|
|
|
|
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"))
|
|
|
|
exclude(dependency("org.checkerframework:checker-qual"))
|
2019-09-21 01:52:35 +00:00
|
|
|
exclude(dependency("org.slf4j:slf4j-api"))
|
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
|
|
|
|
.filterIsInstance<ModuleDependency>()
|
|
|
|
.map { it.copy() }
|
2020-11-09 09:38:10 +00:00
|
|
|
.map { dependency ->
|
2019-08-26 04:45:03 +00:00
|
|
|
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) })
|
|
|
|
}
|
|
|
|
tasks.register<Jar>("sourcesJar") {
|
|
|
|
from({
|
|
|
|
altConfigFiles("sources")
|
|
|
|
})
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named("assemble").configure {
|
|
|
|
dependsOn("jar", "sourcesJar")
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
val jar = tasks.named("jar")
|
|
|
|
add("default", jar) {
|
|
|
|
builtBy(jar)
|
|
|
|
}
|
|
|
|
val sourcesJar = tasks.named("sourcesJar")
|
|
|
|
add("archives", sourcesJar) {
|
|
|
|
builtBy(sourcesJar)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Upload>("install") {
|
|
|
|
configuration = configurations["archives"]
|
|
|
|
(repositories as HasConvention).convention.getPlugin<MavenRepositoryHandlerConvention>().mavenInstaller {
|
|
|
|
pom.version = project.version.toString()
|
|
|
|
pom.artifactId = project.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|