@Override
public void install() {
// install tomcat
TomcatInstaller tomcatInstaller = new TomcatInstaller();
tomcatInstaller.setDestinationDir(getServerPath());
tomcatInstaller.install();
// unzip activiti
String filename = "activiti-5.16.3.zip";
NetworkTasks.downloadFile("https://github.com/Activiti/Activiti/releases/download/activiti-5.16.3/" + filename, Configuration.getDownloadsDir());
ZipTasks.unzip(Configuration.getDownloadsDir().resolve(filename), getServerPath());