mirror of
https://github.com/Auxilor/EcoBits.git
synced 2025-12-19 15:09:19 +00:00
124 lines
3.2 KiB
Plaintext
124 lines
3.2 KiB
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("java-library")
|
|
id("com.github.johnrengelman.shadow") version "7.0.0"
|
|
id("maven-publish")
|
|
id("java")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":eco-core"))
|
|
implementation(project(":eco-core:core-plugin"))
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin = "java")
|
|
apply(plugin = "kotlin")
|
|
apply(plugin = "maven-publish")
|
|
apply(plugin = "com.github.johnrengelman.shadow")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven { url = uri("https://jitpack.io") }
|
|
maven { url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") }
|
|
maven { url = uri("https://repo.codemc.org/repository/nms/") }
|
|
maven { url = uri("https://repo.codemc.io/repository/maven-public/") }
|
|
maven { url = uri("https://repo.dmulloy2.net/repository/public/") }
|
|
maven { url = uri("https://repo.extendedclip.com/content/repositories/placeholderapi/") }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("com.willfp:eco:6.50.1")
|
|
compileOnly("org.jetbrains:annotations:23.0.0")
|
|
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.7.10")
|
|
|
|
compileOnly("me.clip:placeholderapi:2.11.2")
|
|
compileOnly("com.github.ben-manes.caffeine:caffeine:3.1.0")
|
|
}
|
|
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = "UTF-8"
|
|
dependsOn(clean)
|
|
}
|
|
|
|
processResources {
|
|
filesMatching(listOf("**plugin.yml")) {
|
|
expand(mapOf("projectVersion" to project.version))
|
|
}
|
|
}
|
|
|
|
build {
|
|
dependsOn("shadowJar")
|
|
}
|
|
}
|
|
}
|
|
|
|
group = "com.willfp"
|
|
version = findProperty("version")!!
|
|
|
|
tasks.register("buyThePlugins") {
|
|
doLast {
|
|
println("If you like the plugin, please consider buying it on Spigot or Polymart!")
|
|
println("Spigot: https://www.spigotmc.org/resources/authors/auxilor.507394/")
|
|
println("Polymart: https://polymart.org/user/auxilor.1107/")
|
|
println("Buying gives you access to support and the plugin auto-updater, and it allows me to keep developing plugins.")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
build {
|
|
dependsOn("publishToMavenLocal")
|
|
finalizedBy("buyThePlugins")
|
|
}
|
|
|
|
withType<Jar> {
|
|
destinationDirectory.set(file("$rootDir/bin/"))
|
|
}
|
|
|
|
register("cleanBin") {
|
|
doLast {
|
|
file("$rootDir/bin").deleteRecursively()
|
|
}
|
|
}
|
|
|
|
clean {
|
|
finalizedBy("cleanBin")
|
|
}
|
|
|
|
named<ShadowJar>("shadowJar") {
|
|
archiveFileName.set("${findProperty("plugin-name")} v${findProperty("version")}.jar")
|
|
}
|
|
|
|
named<Jar>("jar") {
|
|
archiveFileName.set("${findProperty("plugin-name")} v${findProperty("version")} unshaded.jar")
|
|
}
|
|
}
|