In ekstazi\org.ekstazi.core.test\src\main\java\org\ekstazi\it\AbstractCmd.java, the generated maven commands will start with "mvn ...". However on Windows, directly apply this command will raise a problem (link).
We add 3 lines to AbstractCmd.java at line 49.
if (System.getProperty("os.name").toLowerCase().contains("win") && command[0].equals("mvn"){
command[0] = "mvn.cmd";
}
In
ekstazi\org.ekstazi.core.test\src\main\java\org\ekstazi\it\AbstractCmd.java
, the generated maven commands will start with "mvn ...". However on Windows, directly apply this command will raise a problem (link).We add 3 lines to
AbstractCmd.java
at line 49.