public void generate(String jarPath, String wrapperPropertiesPath, File scriptDestinationDir) {
try {
createUnixScript(jarPath, scriptDestinationDir, wrapperPropertiesPath);
createWindowsScript(jarPath, scriptDestinationDir, wrapperPropertiesPath);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}