fix local java test using fully qualified name

This commit is contained in:
wing328 2016-02-07 16:16:06 +08:00
parent 510a5bdb74
commit 9f78b3cf9c

View File

@ -85,7 +85,7 @@ public class PetstoreProfiling {
private void writeResultsToFile(List<Map<String, String>> results) {
try {
File file = new File(outputFile);
java.io.File file = new java.io.File(outputFile);
PrintWriter writer = new PrintWriter(file);
String command = "mvn compile test-compile exec:java -Dexec.classpathScope=test -Dexec.mainClass=\"io.swagger.PetstoreProfiling\"";
writer.println("# To run the profiling:");