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
|
|
|
}
|
|
|
|
|
2021-09-06 20:17:20 +08:00
|
|
|
kotlin {
|
|
|
|
sourceSets.configureEach {
|
|
|
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-06 20:33:04 +08:00
|
|
|
dependencies {
|
2021-07-25 23:24:42 +08:00
|
|
|
implementation(project(":psolib"))
|
2021-03-06 20:33:04 +08:00
|
|
|
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)
|
|
|
|
}
|