2021-03-06 20:33:04 +08:00
|
|
|
plugins {
|
2021-07-25 02:13:02 +08:00
|
|
|
id("world.phantasmal.jvm")
|
2021-03-06 20:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":lib"))
|
|
|
|
implementation(project(":web:shared"))
|
2021-03-13 04:53:49 +08:00
|
|
|
implementation("org.jsoup:jsoup:1.13.1")
|
2021-03-06 20:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<JavaExec>("generateAssets") {
|
|
|
|
val outputFile = File(buildDir, "generatedAssets")
|
|
|
|
outputs.dir(outputFile)
|
|
|
|
|
|
|
|
classpath = sourceSets.main.get().runtimeClasspath
|
2021-07-25 02:13:02 +08:00
|
|
|
mainClass.set("world.phantasmal.web.assetsGeneration.MainKt")
|
2021-03-06 20:33:04 +08:00
|
|
|
args = listOf(outputFile.absolutePath)
|
|
|
|
}
|