![JAR search and dependency download from the Maven repository](/logo.png)
org.akhikhl.gretty.AppRedeployTask.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gretty Show documentation
Show all versions of gretty Show documentation
Advanced gradle plugin for running web-apps on jetty and tomcat
package org.akhikhl.gretty
/**
* @author sala
*/
class AppRedeployTask extends AppServiceTask {
List webapps = []
def webapp(String webapp) {
webapps.add(webapp)
}
@Override
String getCommand() {
return "redeploy ${webapps.join(' ')}"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy