mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
24 lines
708 B
Plaintext
24 lines
708 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
val log4jVersion: String by project.extra
|
|
|
|
dependencies {
|
|
implementation(project(":lib"))
|
|
implementation(project(":web:shared"))
|
|
implementation("org.jsoup:jsoup:1.13.1")
|
|
implementation("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
|
}
|
|
|
|
tasks.register<JavaExec>("generateAssets") {
|
|
val outputFile = File(buildDir, "generatedAssets")
|
|
outputs.dir(outputFile)
|
|
|
|
classpath = sourceSets.main.get().runtimeClasspath
|
|
main = "world.phantasmal.web.assetsGeneration.MainKt"
|
|
args = listOf(outputFile.absolutePath)
|
|
}
|