Search Gradle plugins

A Gradle plugin that applies project configurations for RapidMiner extensions.

https://www.rapidminer.com

Version 1.0.0

Created 20 September 2023.

* Updated to gradle 8.2.1 and java 11 * Updated java-basics to 1.0.0 * Updated java-publishing to 1.0.0 * Updated code-quality to 1.0.0 * Updated shadow plugin to 8.1.1 * Updated default gradle wrapper to version 8.2.1 * Added forceApi and forceImplementation dependency configuration * Can be used in combination with shadow's relocate mechanism to include otherwise non-packaged libraries * Fixes a previously faulty relocate behavior for dependencies provided through Studio or other extensions * Added two project flags _transitiveCleanDependencies_ and _keepForcedTransitive_ to control transitive dependencies * Transitive dependencies of new impl/api dependencies can be excluded if provided through compileOnly * Transitive dependencies of forced impl/api dependencies can be kept even though they are provided through compileOnly

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.rapidminer.extension") version "1.0.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:1.0.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:1.0.0")
      }
    }
    
    apply(plugin = "com.rapidminer.extension")
  • Applying plugins to all subprojects .