mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
19 lines
481 B
Plaintext
19 lines
481 B
Plaintext
plugins {
|
|
id("world.phantasmal.jvm")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lib"))
|
|
implementation(project(":web:shared"))
|
|
implementation("org.jsoup:jsoup:1.13.1")
|
|
}
|
|
|
|
tasks.register<JavaExec>("generateAssets") {
|
|
val outputFile = File(buildDir, "generatedAssets")
|
|
outputs.dir(outputFile)
|
|
|
|
classpath = sourceSets.main.get().runtimeClasspath
|
|
mainClass.set("world.phantasmal.web.assetsGeneration.MainKt")
|
|
args = listOf(outputFile.absolutePath)
|
|
}
|