Search Gradle plugins

com.bmuschko.tomcat

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

https://github.com/bmuschko/gradle-tomcat-plugin

Version 2.7.0 (latest)

2.7.0

Created 29 June 2021.

Plugin that provides tasks for deploying your web application to an embedded Tomcat web container.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bmuschko.tomcat") version "2.7.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.bmuschko:gradle-tomcat-plugin:2.7.0")
      }
    }
    
    apply(plugin = "com.bmuschko.tomcat")
  • Applying plugins to all subprojects .