Skip to content

Commit

Permalink
JENKINS-16573 Getting testing result from non default junit mojo fail…
Browse files Browse the repository at this point in the history
…ed build.
  • Loading branch information
vkravets committed Jan 31, 2013
1 parent a9c0080 commit c846f7c
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 c846f7c

Please sign in to comment.