![JAR search and dependency download from the Maven repository](/logo.png)
org.akhikhl.gretty.JettyServiceTask.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
/*
* Gretty
*
* Copyright (C) 2013-2015 Andrey Hihlovskiy and contributors.
*
* See the file "LICENSE" for copying and usage permission.
* See the file "CONTRIBUTORS" for complete list of contributors.
*/
package org.akhikhl.gretty
import org.slf4j.Logger
import org.slf4j.LoggerFactory
/**
*
* @author akhikhl
*/
abstract class JettyServiceTask extends AppServiceTask {
protected static final Logger log = LoggerFactory.getLogger(JettyBeforeIntegrationTestTask)
JettyServiceTask() {
doFirst {
log.warn 'JettyServiceTask is deprecated and will be removed in Gretty 2.0. Please use AppServiceTask instead.'
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy