com.figaf.irt-plugin
Owner: Arsenii Istlentev
Figaf SAP IRT Plugin
https://github.com/figaf/irt-gradle-plugin
Sources: https://github.com/figaf/irt-gradle-plugin.git
Version 1.2.RELEASE (latest)
1.2.RELEASE
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"