net.bdavies.embedded-tomcat
Owner: Ben Davies
Use Tomcat in your gradle workspace and is plug and play
https://github.com/bendavies99/EmbeddedTomcat
Sources: https://github.com/bendavies99/EmbeddedTomcat
Version 0.0.2 (latest)
Created 22 February 2022.
Use Tomcat in your gradle workspace and is plug and play
Add this plugin to your build using the plugins DSL:
plugins {
id("net.bdavies.embedded-tomcat") version "0.0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.bdavies.embedded-tomcat:net.bdavies.embedded-tomcat.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("net.bdavies.embedded-tomcat") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.bdavies.embedded-tomcat:net.bdavies.embedded-tomcat.gradle.plugin:0.0.2") } } apply(plugin = "net.bdavies.embedded-tomcat")
- Applying plugins to all subprojects .