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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.rapidminer.extension:com.rapidminer.extension.gradle.plugin:0.7.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.rapidminer.extension")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.rapidminer.extension:com.rapidminer.extension.gradle.plugin:0.7.0")
      }
    }
    
    apply(plugin = "com.rapidminer.extension")
  • Applying plugins to all subprojects .