Search Gradle plugins

com.tts.scp-neo-plugin

Sap Cloud Platform Neo stack plugin for the Tomcat Sdk

Version 0.1.3

Created 24 December 2017.

Sap Cloud Platform Neo stack plugin for the Tomcat Sdk

Using the plugins DSL:

plugins {
  id("com.tts.scp-neo-plugin") version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.tts:neo-java-web-gradle-plugin:0.1.3")
  }
}

apply(plugin = "com.tts.scp-neo-plugin")

Using the plugins DSL:

plugins {
  id "com.tts.scp-neo-plugin" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.tts:neo-java-web-gradle-plugin:0.1.3"
  }
}

apply plugin: "com.tts.scp-neo-plugin"

Learn how to apply plugins to subprojects