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.1.3 (latest)
Created 03 September 2025.
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.1.3"
}
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.1.3") }
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.1.3") } } apply(plugin = "com.labijie.infra")
- Applying plugins to all subprojects .