com.labijie.infra
Owner:
AndersXiao
Build toolkit to help you configure gradle project
https://github.com/hongque-pro/infra-gradle-plugin
Sources: https://github.com/hongque-pro/infra-gradle-plugin.git
Version 2.0.4 (latest)
Created 31 July 2024.
Build toolkit to help you configure gradle project
Add this plugin to your build using the plugins DSL:
plugins {
id("com.labijie.infra") version "2.0.4"
}
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.labijie.infra:com.labijie.infra.gradle.plugin:2.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.labijie.infra") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.labijie.infra:com.labijie.infra.gradle.plugin:2.0.4") } } apply(plugin = "com.labijie.infra")
- Applying plugins to all subprojects .