com.github.smac89.aspectj
Owner: Chigozirim C.
Gradle plugin for creating tasks for compiling aspects with aspectJ
https://github.com/smac89/aspectj-gradle
Sources: https://github.com/smac89/aspectj-gradle.git
Version 0.1.2 (latest)
0.1.2
Created 16 April 2018.
Gradle plugin for creating tasks for compiling aspects with aspectJ
Using the plugins DSL:
plugins {
id("com.github.smac89.aspectj") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.smac89.aspectj:aspectj-gradle:0.1.2")
}
}
apply(plugin = "com.github.smac89.aspectj")
Using the plugins DSL:
plugins {
id "com.github.smac89.aspectj" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.smac89.aspectj:aspectj-gradle:0.1.2"
}
}
apply plugin: "com.github.smac89.aspectj"