com.ibotta.gradle.aop
Owner:
Ibotta Android
A Gradle plugin for Android projects which performs AspectJ weaving using Android's bytcode manipulation pipeline.
https://github.com/Ibotta/gradle-aspectj-pipeline-plugin
Sources: https://github.com/Ibotta/gradle-aspectj-pipeline-plugin
Version 1.4.1 (latest)
Created 26 September 2022.
A Gradle plugin for Android projects which performs AspectJ weaving using Android's bytcode manipulation pipeline.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.ibotta.gradle.aop") version "1.4.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.ibotta.gradle.aop:com.ibotta.gradle.aop.gradle.plugin:1.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.ibotta.gradle.aop") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.ibotta.gradle.aop:com.ibotta.gradle.aop.gradle.plugin:1.4.1") } } apply(plugin = "com.ibotta.gradle.aop")
- Applying plugins to all subprojects .