mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 02:17:11 +00:00
c9a4a9c8b4
* Update gradle to 8 * Update codeql.yml
26 lines
630 B
Plaintext
26 lines
630 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.8.20"
|
|
application
|
|
}
|
|
|
|
applyCommonConfiguration()
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "17"
|
|
}
|
|
|
|
application.mainClass.set("com.sk89q.worldedit.internal.util.DocumentationPrinter")
|
|
tasks.named<JavaExec>("run") {
|
|
workingDir = rootProject.projectDir
|
|
}
|
|
|
|
dependencies {
|
|
"implementation"(project(":worldedit-libs:core:ap"))
|
|
"implementation"(project(":worldedit-core"))
|
|
"implementation"(kotlin("stdlib-jdk8"))
|
|
"implementation"(kotlin("reflect"))
|
|
"implementation"("com.google.guava:guava")
|
|
}
|