Search Gradle plugins

Version 1.1.0 (latest)

Created 09 September 2022.

基于HujiangTechnology的AspectJX,适配Gradle版本至7.3.3,适配Android Gradle Plugin版本7.2.2

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects