(String filePath)
| 22 | } |
| 23 | |
| 24 | public static boolean jar(String filePath) throws IOException { |
| 25 | String jarStr = "mvn jar:jar"; |
| 26 | ToolShell.ToolCommandExec toolCommandExec = new ToolShell.ToolCommandExec(true, false, " cd " + filePath, jarStr); |
| 27 | ToolShell.ToolCommandResult toolCommandResult = ToolShell.execCmd(toolCommandExec); |
| 28 | return toolCommandResult.errorMsg.length() <= 1; |
| 29 | } |
| 30 | } |