We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7964853 commit 8d6f4ecCopy full SHA for 8d6f4ec
build.gradle.kts
@@ -47,7 +47,6 @@ subprojects {
47
apply(plugin = "java")
48
apply(plugin = catalog.plugins.eclipse.apt.get().pluginId)
49
apply(plugin = catalog.plugins.spotless.get().pluginId)
50
- apply(plugin = catalog.plugins.doma.compile.get().pluginId)
51
52
java {
53
toolchain {
@@ -58,6 +57,8 @@ subprojects {
58
57
tasks {
59
withType<JavaCompile> {
60
options.encoding = "UTF-8"
+ // TODO Remove this workaround
61
+ options.compilerArgs.add("-Adoma.resources.dir=" + sourceSets["main"].resources.srcDirs.first().absolutePath)
62
}
63
64
withType<Test> {
0 commit comments