Search Gradle plugins

com.bmuschko.tomcat-base

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

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

Version 2.3

2.3

Created 28 June 2017.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bmuschko.tomcat-base") version "2.3"
}

See also:

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