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 443cc94 commit c15999eCopy full SHA for c15999e
compiler-plugin/build.gradle.kts
@@ -2,6 +2,7 @@ plugins {
2
kotlin("jvm")
3
`java-test-fixtures`
4
id("com.github.gmazzo.buildconfig")
5
+ idea
6
}
7
8
sourceSets {
@@ -14,10 +15,14 @@ sourceSets {
14
15
16
test {
17
java.setSrcDirs(listOf("test", "test-gen"))
- resources.setSrcDirs(listOf("testResources"))
18
+ resources.setSrcDirs(listOf("testData"))
19
20
21
22
+idea {
23
+ module.generatedSourceDirs.add(projectDir.resolve("test-gen"))
24
+}
25
+
26
val annotationsRuntimeClasspath: Configuration by configurations.creating { isTransitive = false }
27
28
dependencies {
0 commit comments