Skip to content

Commit 72bee2f

Browse files
committed
Fix README.md
1 parent 871d8d9 commit 72bee2f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Doma Compile Plugin
44
Doma compile plugin is a gradle plugin.
55
It allows annotation processors to read Doma resources at compile-time.
66

7+
The plugin supports Java and Kotlin.
8+
79
How to use
810
----------
911

@@ -34,7 +36,7 @@ processResources {
3436
3537
task syncDomaResourcesKotlin(type: Sync) {
3638
from sourceSets.main.resources.srcDirs
37-
into kotlinJava.destinationDir
39+
into compileKotlin.destinationDir
3840
include domaResources
3941
}
4042
@@ -44,7 +46,7 @@ compileKotlin {
4446
4547
kapt {
4648
arguments {
47-
arg("doma.resources.dir", compileKotlin.destinationDir)
49+
arg('doma.resources.dir', compileKotlin.destinationDir)
4850
}
4951
}
5052
```

0 commit comments

Comments
 (0)