Search Gradle plugins

com.tts.scp-neo-plugin

Sap Cloud Platform Neo stack plugin for the Tomcat Sdk

Version 0.1.13

Created 12 January 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.13"
}

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

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

Using the plugins DSL:

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

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

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

Learn how to apply plugins to subprojects