Search Gradle plugins

com.tts.scp-neo-plugin

Sap Cloud Platform Neo stack plugin for the Tomcat Sdk

http://www.gradle.org/

Version 0.1.17 (latest)

Created 21 February 2018.

Sap Cloud Platform Neo stack plugin for the Tomcat Sdk

Using the plugins DSL:

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

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.17")
  }
}

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

Using the plugins DSL:

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

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.17"
  }
}

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

Learn how to apply plugins to subprojects