WorldEdit/worldedit-sponge/build.gradle.kts
Matthew Miller d3810865c8
Show a message with install instructions when running the jar file (#1682)
* Show a message with install instructions when running the jar file

* Typo

* Fixed checkstyle issue

* Slightly modify message to adapt to the type of install

* Clean up the display code a lot

* Allow line breaks before semi

Co-authored-by: Octavia Togami <octavia.togami@gmail.com>
2021-02-22 22:05:23 -08:00

49 lines
1.2 KiB
Plaintext

import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("org.spongepowered.gradle.plugin")
}
applyPlatformAndCoreConfiguration()
applyShadowConfiguration()
// I can't believe sponge sets this in a base plugin with no opt-out
convention.getPlugin(JavaPluginConvention::class.java).apply {
setSourceCompatibility(null)
setTargetCompatibility(null)
}
repositories {
maven { url = uri("https://repo.codemc.org/repository/maven-public") }
}
dependencies {
api(project(":worldedit-core"))
api(project(":worldedit-libs:sponge"))
api("org.spongepowered:spongeapi:7.1.0")
api("org.bstats:bstats-sponge:1.7")
testImplementation("org.mockito:mockito-core:1.9.0-rc1")
}
addJarManifest(WorldEditKind.Mod, includeClasspath = true)
tasks.named<ShadowJar>("shadowJar") {
dependencies {
relocate ("org.bstats", "com.sk89q.worldedit.sponge.bstats") {
include(dependency("org.bstats:bstats-sponge:1.7"))
}
}
}
if (project.hasProperty("signing")) {
apply(plugin = "signing")
configure<SigningExtension> {
sign("shadowJar")
}
tasks.named("build").configure {
dependsOn("signShadowJar")
}
}