Search Gradle plugins

Version 1.2.RELEASE (latest)

Created 29 January 2021.

Figaf SAP IRT Plugin

Using the plugins DSL:

plugins {
  id("com.figaf.irt-plugin") version "1.2.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.figaf:irt-plugin:1.2.RELEASE")
  }
}

apply(plugin = "com.figaf.irt-plugin")

Using the plugins DSL:

plugins {
  id "com.figaf.irt-plugin" version "1.2.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.figaf:irt-plugin:1.2.RELEASE"
  }
}

apply plugin: "com.figaf.irt-plugin"

Learn how to apply plugins to subprojects