I have a gradle project I’m trying to add jacoco reporting with aggregation to and I can’t seem to make things work… When I try to add a buildSrc
plugin to the repo with a build script containing
plugins {
id 'groovy-gradle-plugin'
}
the build consistantly fails, mentioning that groovy-gradle-plugin
is not a core plugin. I can’t find any other instances of this with my searching, so I’m asking here.
It is a multimodule project with a root module and some sub modules. one of which will fail to compile due to an intentional error. I’ve attached a zip file with the project for anybody who wants to take a look.
I was following this guide for this. The only difference I see in this project from the sample provided is that the root module has its own java source and test files which are compiled.
I accidentally deleted the wrapper directory and I was unable to regenerate the wrapper because this error would always occur when I ran gradle wrapper
as well.
What am i doing wrong?
testGradle.zip (32.5 KB)