Search Gradle plugins

com.rapidminer.extension

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.rapidminer.extension"

Learn how to apply plugins to subprojects