com.umayrh.rplugin
Owner: Hassan
Plugin for R development
Sources: https://github.com/umayrh/gradle-plugin-r
Using the plugins DSL:
plugins {
id("com.umayrh.rplugin") version "0.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.umayrh:plugin:0.3.3")
}
}
apply(plugin = "com.umayrh.rplugin")
Using the plugins DSL:
plugins {
id "com.umayrh.rplugin" version "0.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.umayrh:plugin:0.3.3"
}
}
apply plugin: "com.umayrh.rplugin"