io.github.gmkseta.k-factory-bot
Owner: KimSeongJun
Kotlin Factory Bot
https://github.com/gmkseta/k-factory-bot
Sources: https://github.com/gmkseta/k-factory-bot
Using the plugins DSL:
plugins {
id("io.github.gmkseta.k-factory-bot") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gmkseta:k-factory-bot:0.0.2")
}
}
apply(plugin = "io.github.gmkseta.k-factory-bot")
Using the plugins DSL:
plugins {
id "io.github.gmkseta.k-factory-bot" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gmkseta:k-factory-bot:0.0.2"
}
}
apply plugin: "io.github.gmkseta.k-factory-bot"