com.github.arekbee.gradle-R-plugin
Owner: arekbee
Gradle R plugin for R projects and packages
https://github.com/arekbee/gradle-R-plugin
Sources: https://github.com/arekbee/gradle-R-plugin
Version 0.12 (latest)
0.12
Created 24 February 2019.
Gradle R plugin for R projects and packages
Using the plugins DSL:
plugins {
id("com.github.arekbee.gradle-R-plugin") version "0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.arekbee:gradle-R-plugin:0.12")
}
}
apply(plugin = "com.github.arekbee.gradle-R-plugin")
Using the plugins DSL:
plugins {
id "com.github.arekbee.gradle-R-plugin" version "0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.arekbee:gradle-R-plugin:0.12"
}
}
apply plugin: "com.github.arekbee.gradle-R-plugin"