cn.edu.sustech.cse.sqlab.plugin
Owner:
ZhaoxuZ
Plugin for transforming source code to SSA and CFG
https://github.com/Henrycobaltech/AndroidInfiniteLoop
Sources: https://github.com/Henrycobaltech/AndroidInfiniteLoop
Version 1.1.1 (latest)
Created 19 November 2019.
Plugin for transforming source code to SSA and CFG
Add this plugin to your build using the plugins DSL:
plugins {
id("cn.edu.sustech.cse.sqlab.plugin") version "1.1.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("cn.edu.sustech.cse.sqlab.plugin:cn.edu.sustech.cse.sqlab.plugin.gradle.plugin:1.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("cn.edu.sustech.cse.sqlab.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cn.edu.sustech.cse.sqlab.plugin:cn.edu.sustech.cse.sqlab.plugin.gradle.plugin:1.1.1") } } apply(plugin = "cn.edu.sustech.cse.sqlab.plugin")
- Applying plugins to all subprojects .