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 871d8d9 commit 72bee2fCopy full SHA for 72bee2f
README.md
@@ -4,6 +4,8 @@ Doma Compile Plugin
4
Doma compile plugin is a gradle plugin.
5
It allows annotation processors to read Doma resources at compile-time.
6
7
+The plugin supports Java and Kotlin.
8
+
9
How to use
10
----------
11
@@ -34,7 +36,7 @@ processResources {
34
36
35
37
task syncDomaResourcesKotlin(type: Sync) {
38
from sourceSets.main.resources.srcDirs
- into kotlinJava.destinationDir
39
+ into compileKotlin.destinationDir
40
include domaResources
41
}
42
@@ -44,7 +46,7 @@ compileKotlin {
44
46
45
47
kapt {
48
arguments {
- arg("doma.resources.dir", compileKotlin.destinationDir)
49
+ arg('doma.resources.dir', compileKotlin.destinationDir)
50
51
52
```
0 commit comments