2021-03-06 20:33:04 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
2021-03-13 04:53:49 +08:00
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
|
|
val log4jVersion: String by project.extra
|
|
|
|
|
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")
|
|
|
|
implementation("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
|
|
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
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-03-13 04:53:49 +08:00
|
|
|
main = "world.phantasmal.web.assetsGeneration.MainKt"
|
2021-03-06 20:33:04 +08:00
|
|
|
args = listOf(outputFile.absolutePath)
|
|
|
|
}
|