com.x12q.kotlin.randomizer
Owner: Phong The Pham
A plugin to generate random instances of classes in Kotlin.
https://github.com/x12q/kotlin-randomizer
Sources: https://github.com/x12q/kotlin-randomizer.git
Version 1.0.0-alpha.11 (latest)
Created 31 December 2024.
A plugin to generate random instances of classes in Kotlin.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.x12q.kotlin.randomizer") version "1.0.0-alpha.11"
}
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.x12q.kotlin.randomizer:com.x12q.kotlin.randomizer.gradle.plugin:1.0.0-alpha.11") }
It can then be applied in the precompiled script plugin:plugins { id("com.x12q.kotlin.randomizer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.x12q.kotlin.randomizer:com.x12q.kotlin.randomizer.gradle.plugin:1.0.0-alpha.11") } } apply(plugin = "com.x12q.kotlin.randomizer")
- Applying plugins to all subprojects .