-
Notifications
You must be signed in to change notification settings - Fork 48
scoverage:integration-report fails if JARs are not present in local repository #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi In multi-module builds, in tasks after In tasks after the The only workaround I know, without installing dependent modules in local repository is to call:
You cannot run |
Thanks for your answer. It worked doing
, but unit tests (Maven |
Check my comment please. |
Uh oh!
There was an error while loading. Please reload this page.
Hello,
(This looks like a duplicate of #51)
When running
mvn scoverage:integration-report
on a multi-module project with dependencies between modules, build fails if the modules JARs are not present in local repository (~/.m2/repository
).If I run
mvn install
before, it works.I have reproduced the issue based on the
scoverage-maven-samples
repository (subprojectaggregation
), by just adding a dependency betweenmodule02
andmodule01
(seemodule02/pom.xml
). The error I got when runningmvn scoverage:integration-report
is :The issue comes from the
verify
phase onmodule02
run in forked scoverage lifecycle.How can I avoid doing a
mvn install
before using coverage goals ? Is there any reason thatintegration-report
goal uses JARs in local repository instead of classes/JARs generated in modulestarget/
directory ? Maybe I'm missing something.The text was updated successfully, but these errors were encountered: