Search Gradle plugins

com.rapidminer.extension

A Gradle plugin that applies project configurations for RapidMiner extensions.

https://www.rapidminer.com

Version 0.7.0

Created 30 April 2015.

* Added an extension initialization task which creates a fresh extension project setup
* Change shadow plugin to latest version (1.2.1) which is compatible with Gradle 2.2+
* Changes default Gradle wrapper version to 2.3
* Applying the plugin will only affect the configuration of the project the plugin was applied to. Subprojects need to be configured separately.
* Added a task that prepares a RapidMiner Home environment for extension process tests
* Added RapidMiner Studio core test artifact as testCompile dependency for running process tests without cloning the RapidMiner Studio Git repository
* Replaced 'rapidminerHome' extensionConfig property with 'extensionFolder' property.
Extensions are now installed into ~/.RapidMiner/extensions by default if the 'extensionFolder' property is not set.

Using the plugins DSL:

plugins {
  id("com.rapidminer.extension") version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.rapidminer.gradle:gradle-plugin-rapidminer-extension:0.7.0")
  }
}

apply(plugin = "com.rapidminer.extension")

Using the plugins DSL:

plugins {
  id "com.rapidminer.extension" version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.rapidminer.gradle:gradle-plugin-rapidminer-extension:0.7.0"
  }
}

apply plugin: "com.rapidminer.extension"

Learn how to apply plugins to subprojects