Search Gradle plugins

at.jku.isse.gradient-gradle

Executes the gradient aspect weaving and the structural analysis and helps to build the proper gradient toolchain.

https://github.com/jku-isse/gradient

Sources: https://gitlab.com/hannes.thaller/gradient-client

Version 0.8.1 (latest)

Created 07 November 2019.

Executes the gradient aspect weaving and the code analysis and helps to build the proper gradient toolchain.

Add this plugin to your build using the plugins DSL:

plugins {
  id("at.jku.isse.gradient-gradle") version "0.8.1"
}

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("at.jku.isse.gradient-gradle:at.jku.isse.gradient-gradle.gradle.plugin:0.8.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("at.jku.isse.gradient-gradle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("at.jku.isse.gradient-gradle:at.jku.isse.gradient-gradle.gradle.plugin:0.8.1")
      }
    }
    
    apply(plugin = "at.jku.isse.gradient-gradle")
  • Applying plugins to all subprojects .