com.github.arendd
所有者: Daniel Arend
这是一个用于与 Gradle 5 配合使用的 AspectJ 插件
https://github.com/arendd/AspectjGradlePlugin
来源:https://github.com/arendd/AspectjGradlePlugin
版本 0.0.1 (最新)
0.0.1
创建于 2019 年 4 月 23 日。
这是一个用于与 Gradle 5 配合使用的 AspectJ 插件
使用 plugins DSL
plugins {
id("com.github.arendd") version "0.0.1"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.de:AspectjGradlePlugin:0.0.1")
}
}
apply(plugin = "com.github.arendd")
使用 plugins DSL
plugins {
id "com.github.arendd" version "0.0.1"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.de:AspectjGradlePlugin:0.0.1"
}
}
apply plugin: "com.github.arendd"