Skip to content

Commit

Permalink
The outputDirectory is now optional for serenity:check
Browse files Browse the repository at this point in the history
The serenity.outputDirectory property is now optional for the Check plugin.
  • Loading branch information
wakaleo committed Jun 9, 2016
1 parent f1192a9 commit 74b0e28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ext {
bintrayPackage = 'serenity-core'
projectDescription = 'Serenity Maven Plugin'

serenityCoreVersion = '1.1.36'
serenityCoreVersion = '1.1.37-rc.2'
if (!project.hasProperty("bintrayUsername")) {
bintrayUsername = 'wakaleo'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,16 @@
import org.apache.maven.plugins.annotations.Parameter;

import java.io.File;
import java.nio.file.Path;

/**
* This plugin deletes existing history files for Serenity for this project.
* This plugin checks for the presence of failing tests in the target directory
*/
@Mojo(name = "check")
public class SerenityCheckMojo extends AbstractMojo {
/**
* Aggregate reports are generated here
*/
@Parameter(property = "serenity.outputDirectory", defaultValue = "", required=true)
@Parameter(property = "serenity.outputDirectory", defaultValue = "")//, required=true)
public String outputDirectoryPath;

@Parameter(defaultValue = "${session}")
Expand Down

0 comments on commit 74b0e28

Please sign in to comment.