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)
0.0.2
Created 22 February 2022.
Use Tomcat in your gradle workspace and is plug and play
Using the plugins DSL:
plugins {
id("net.bdavies.embedded-tomcat") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.bdavies.embedded-tomcat:plugin:0.0.2")
}
}
apply(plugin = "net.bdavies.embedded-tomcat")
Using the plugins DSL:
plugins {
id "net.bdavies.embedded-tomcat" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.bdavies.embedded-tomcat:plugin:0.0.2"
}
}
apply plugin: "net.bdavies.embedded-tomcat"