Make format task work with AOT project

This commit is contained in:
Josh Cummings
2024-09-17 14:22:49 -06:00
parent 2332773e9c
commit 4a7012b6f7

View File

@@ -37,3 +37,12 @@ tasks.withType(Test).configureEach {
useJUnitPlatform()
outputs.upToDateWhen { false }
}
compileJava {
dependsOn("formatMain")
}
compileTestJava {
dependsOn("formatTest")
}