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.3.3

Created 18 August 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.at.jku.isse:gradle-plugin:0.3.3")
  }
}

apply(plugin = "at.jku.isse.gradient-gradle")

Using the plugins DSL:

plugins {
  id "at.jku.isse.gradient-gradle" version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.at.jku.isse:gradle-plugin:0.3.3"
  }
}

apply plugin: "at.jku.isse.gradient-gradle"

Learn how to apply plugins to subprojects