搜索Gradle插件

版本 1.1.0(最新版)

1.1.0

创建于 2022年9月9日。

基于HujiangTechnology的AspectJX,兼容Gradle版本至7.3.3,兼容Android Gradle Plugin版本7.2.2

使用plugins DSL

plugins {
  id("io.github.zhouyige66.aspectjx-roy") version "1.1.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.zhouyige66:aspectjx:1.1.0")
  }
}

apply(plugin = "io.github.zhouyige66.aspectjx-roy")

使用plugins DSL

plugins {
  id "io.github.zhouyige66.aspectjx-roy" version "1.1.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.zhouyige66:aspectjx:1.1.0"
  }
}

apply plugin: "io.github.zhouyige66.aspectjx-roy"

了解如何将插件应用到子项目