Eric Chauvin

Results 6 comments of Eric Chauvin

thanks for your answer i tried to add : ``` clover{ additionalSourceSet { srcDirs = project(':core').sourceSets.main.java.srcDirs classesDir = project(':core').sourceSets.main.java.outputDir } } ``` in impl i have now the source code,...

i found a workaround, but do you think it is acceptable : https://github.com/bdbogjoe/gradle-clover-multiproject/tree/workaround ![image](https://user-images.githubusercontent.com/1301462/39434570-3d061460-4c99-11e8-8ef3-a8ef4a25ca26.png)

i added your suggestion in the branch but without ``` sourceSets { // Note that just declaring this sourceset creates two configurations. test { java { srcDirs += project(':core').sourceSets.main.java.srcDirs }...

my solution looks like now : ``` clover{ additionalSourceSet { srcDirs = project(':core').sourceSets.main.java.srcDirs def coreInstr = file("${buildDir}/core-instr") coreInstr.mkdirs() classesDir = coreInstr } } sourceSets { // Note that just declaring...

here my project, actually i'm building myself the payload, but would be better if we can use someting more generic https://github.com/bdbogjoe/pronote-rest