Search Gradle plugins

Version 0.6

Created 05 February 2019.

Gradle R plugin for R projects and packages

Using the plugins DSL:

plugins {
  id("com.github.arekbee.gradle-R-plugin") version "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.arekbee:gradle-R-plugin:0.6")
  }
}

apply(plugin = "com.github.arekbee.gradle-R-plugin")

Using the plugins DSL:

plugins {
  id "com.github.arekbee.gradle-R-plugin" version "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.arekbee:gradle-R-plugin:0.6"
  }
}

apply plugin: "com.github.arekbee.gradle-R-plugin"

Learn how to apply plugins to subprojects