io.github.alexsarrell.arch-kotlin-plugin
Owner:
Alexandr Popov
A Gradle plugin for ARCH library. Use it to generate Kotlin classes and docs for analytics using ARCH specification. See examples of usage at https://github.com/alexsarrell/arch/tree/master/demo
https://github.com/alexsarrell/arch
Sources: https://github.com/alexsarrell/arch.git
Version 1.0.0 (latest)
Created 05 June 2025.
A Gradle plugin for ARCH library. Use it to generate Kotlin classes and docs for analytics using ARCH specification. See examples of usage at https://github.com/alexsarrell/arch/tree/master/demo
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.alexsarrell.arch-kotlin-plugin") version "1.0.0"
}
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("io.github.alexsarrell.arch-kotlin-plugin:io.github.alexsarrell.arch-kotlin-plugin.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.alexsarrell.arch-kotlin-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.alexsarrell.arch-kotlin-plugin:io.github.alexsarrell.arch-kotlin-plugin.gradle.plugin:1.0.0") } } apply(plugin = "io.github.alexsarrell.arch-kotlin-plugin")
- Applying plugins to all subprojects .