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

This commit is contained in:
usbharu 2023-09-19 16:43:07 +09:00
parent 633763bbe7
commit bed9cc411a
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
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> {