All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.akhikhl.gretty.AppRedeployTask.groovy Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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