| | |
| | | public static BuildInformation create(Installation installation) |
| | | throws ApplicationException { |
| | | BuildInformation bi = new BuildInformation(); |
| | | List<String> args = new ArrayList<String>(); |
| | | List<String> args = new ArrayList<>(); |
| | | args.add(Utils.getScriptPath( |
| | | Utils.getPath(installation.getServerStartCommandFile()))); |
| | | args.add("-F"); // full verbose |
| | |
| | | return bi; |
| | | } |
| | | |
| | | private Map<String, String> values = new HashMap<String, String>(); |
| | | private Map<String, String> values = new HashMap<>(); |
| | | |
| | | /** |
| | | * Gets the name of this build. This is the first line of the output |