com.aksain.archetype
Owner: Amit Kumar
Gradle plugin that generate projects from template.
https://github.com/aksain/gradle-archetype-plugin
Sources: https://github.com/aksain/gradle-archetype-plugin
Version 1.0.0-rc2 (latest)
Created 27 March 2019.
Gradle plugin that generate projects from template.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.aksain.archetype") version "1.0.0-rc2"
}
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.aksain.archetype:com.aksain.archetype.gradle.plugin:1.0.0-rc2") }
It can then be applied in the precompiled script plugin:plugins { id("com.aksain.archetype") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.aksain.archetype:com.aksain.archetype.gradle.plugin:1.0.0-rc2") } } apply(plugin = "com.aksain.archetype")
- Applying plugins to all subprojects .