hnct.build
Owner: Ryan Truong
Provides project structure for multiple projects build. Developed for HNCT Company.
https://gitlab.com/hnct.build/plugin
Sources: [Coming soon]
Version 1.0.0.SNAPSHOT.4
Created 25 March 2018.
Provides project structure for multiple projects build. Developed for HNCT Company.
Add this plugin to your build using the plugins DSL:
plugins {
id("hnct.build") version "1.0.0.SNAPSHOT.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("hnct.build:hnct.build.gradle.plugin:1.0.0.SNAPSHOT.4") }
It can then be applied in the precompiled script plugin:plugins { id("hnct.build") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("hnct.build:hnct.build.gradle.plugin:1.0.0.SNAPSHOT.4") } } apply(plugin = "hnct.build")
- Applying plugins to all subprojects .