Search Gradle plugins

Version 0.2.1

Created 03 March 2020.

Gradle plugin for running Apache Tomcat

Using the plugins DSL:

plugins {
  id("com.github.sahara3.tomcat-runner") version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.sahara3:gradle-tomcat-runner-plugin:0.2.1")
  }
}

apply(plugin = "com.github.sahara3.tomcat-runner")

Using the plugins DSL:

plugins {
  id "com.github.sahara3.tomcat-runner" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.sahara3:gradle-tomcat-runner-plugin:0.2.1"
  }
}

apply plugin: "com.github.sahara3.tomcat-runner"

Learn how to apply plugins to subprojects