gradle sucks etc
This commit is contained in:
parent
72b4edf48b
commit
b0d4a7d061
25 changed files with 463 additions and 123 deletions
|
|
@ -6,7 +6,6 @@ plugins {
|
|||
}
|
||||
|
||||
group = "de.kentoj.scrow"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
@ -16,9 +15,6 @@ dependencies {
|
|||
implementation(project(":core-bukkit-api"))
|
||||
|
||||
implementation(kotlin("stdlib-jdk8"))
|
||||
|
||||
//implementation("org.spigotmc:spigot-api:1.21.11-R0.1-SNAPSHOT")
|
||||
//implementation("de.kentoj.scrow:kencommandapi-bukkit:0.8")
|
||||
}
|
||||
|
||||
tasks {
|
||||
|
|
@ -31,6 +27,14 @@ tasks {
|
|||
}
|
||||
}
|
||||
|
||||
tasks.processResources {
|
||||
filesMatching("plugin.yml") {
|
||||
expand(mapOf(
|
||||
"version" to project.version.toString()
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
tasks.build {
|
||||
dependsOn("shadowJar")
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue