Merge pull request #2057 from wing328/fix_local_java_test

[Java] fix local Java test issue using fully qualified name
This commit is contained in:
wing328 2016-02-07 16:54:20 +08:00
commit a9ab8a6e98

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:");