chore: ビルド時に強制的にコード生成を行うように

This commit is contained in:
usbharu 2023-09-19 16:43:07 +09:00
parent 5f44510010
commit 3f2cff7e64
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
}
dependsOn("openApiGenerateServer")
mustRunAfter("openApiGenerateServer")
}
tasks.withType<ShadowJar> {