at.jku.isse.gradient-gradle
Owner: Hannes Thaller
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)
0.8.1
Created 07 November 2019.
Executes the gradient aspect weaving and the code analysis and helps to build the proper gradient toolchain.
Using the plugins DSL:
plugins {
id("at.jku.isse.gradient-gradle") version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("at.jku.isse:gradient-gradle-plugin:0.8.1")
}
}
apply(plugin = "at.jku.isse.gradient-gradle")
Using the plugins DSL:
plugins {
id "at.jku.isse.gradient-gradle" version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "at.jku.isse:gradient-gradle-plugin:0.8.1"
}
}
apply plugin: "at.jku.isse.gradient-gradle"