Using plugin clover:4.0.2 with Grails 2.3.7, Bamboo 5.3
When clover is enabled (i.e. A
while the plugin writes the report to target\clover
.
Setting the configuration option in BuildConfig.groovy reportdir
seems to have no effect:
// Clover plugin configuration clover { on = true reportdir = "target/site/clover" // Because Bamboo looks here, and default is target/clover directories = ['src/java', 'src/groovy', 'test/unit', 'test/integration', 'grails-app'] includes = ['**/*.groovy', '**/*.java'] excludes = ['**/conf/**', '**/plugins/**', '**/migrations/**'] json = true title = "${appName} ${appVersion} (Grails ${grailsVersion})" }
How do I make them both use the same directory?
It appears that the automatic configuration overrides the reportdir
I set, and reverts to the default target\clover
. I suppose this is intended behaviour, but the grails plugin should be pointing to the same report directory by default.
Setting the build to Clover is already integrated into this build... and modifying the
XML location works, ensuring that the on option is set to 'true'
. Simplified config now looks like:
clover { on = true includes = ['**/*.groovy', '**/*.java'] excludes = ['**/conf/**', '**/plugins/**', '**/migrations/**'] json = true title = "${appName} ${appVersion} (Grails ${grailsVersion})" }
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.