gradle-tomcat-plugin icon indicating copy to clipboard operation
gradle-tomcat-plugin copied to clipboard

Gradle plugin supporting deployment of your web application to an embedded Tomcat web container

Results 40 gradle-tomcat-plugin issues
Sort by recently updated
recently updated
newest added

Is there anyway for me to instruct tomcat to skip scanning for annotations in jar files? My current start-up time is about 1 minute 20 seconds. If I add metadata-complete="true"...

I added the plugin to a web app I work on. Works nicely, I just found I couldn't configure something that I usually configure for development in Eclipse and deployment...

To enable HTTP2, it appears the [UpgradeProtocol needs to be specified for the Connector](https://tomcat.apache.org/tomcat-8.5-doc/config/http.html#HTTP/2_Support). This plugin doesn't use server.xml where this is normally specified, and there looks to be no...

Can Tomcat 10 support be added to this plugin?

Is it possible, like in the `test` gradle task? Example: ``` tasks.test { useJUnitPlatform() environment("var", "hello") } ```

some jar like vaadin, contains java source file and other resources file. Tomcat will log warning for each file. Example: ``` Unable to add the resource at [/WEB-INF/classes/VAADIN/themes/valo/fonts/roboto/Roboto-Italic-webfont.woff] to the...

Feature

The plugin defaults to translate jsps into java files but not compile those jsps for war file packaging. The tomcatJasper task is dependent on classes. Since classes runs first, your...

Documentation

I get the following `java.lang.IllegalArgumentException: The AJP Connector is configured with secretRequired="true" but the secret attribute is either null or "". This combination is not valid.` ``` Failed to start...

Feature

I have a webapp that does form based authentication against JDBCRealm, which is normally configured in server.xml. Is there some way to get the authentication working in tomcat-plugin?

Question

I'd like to configure tomcat's logging level when using `tomcatRunWar`, but I don't see any way to do that. Can I drop a `logging.properties` or `log4j.properties` file somewhere, or is...