Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #686 from vkravets/JENKINS-16573
JENKINS-16573 Getting testing result from non default test mojo failed build.
  • Loading branch information
kutzi committed Jan 31, 2013
2 parents e11c01c + c846f7c commit 38d8cdd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -101,7 +101,7 @@ public boolean canRunTests(MojoInfo mojo) {
public Iterable<File> getReportFiles(MavenProject pom, MojoInfo mojo) throws ComponentConfigurationException {
if (this.reportDirectoryConfigKey != null) {
File reportsDir = mojo.getConfigurationValue(this.reportDirectoryConfigKey, File.class);
if (reportsDir.exists()) {
if (reportsDir != null && reportsDir.exists()) {
return getReportFiles(reportsDir, getFileSet(reportsDir));
}

Expand Down

0 comments on commit 38d8cdd

Please sign in to comment.