com.mielke.codegen
Owner: Joe Mielke
code generation allowing the ability to setup custom project templates
https://gitlab.com/joemielke/codegen
Sources: https://gitlab.com/joemielke/codegen
Version 0.0.12 (latest)
0.0.12
Created 18 May 2020.
code generation allowing the ability to setup custom project templates
Using the plugins DSL:
plugins {
id("com.mielke.codegen") version "0.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.mielke:codegen:0.0.12")
}
}
apply(plugin = "com.mielke.codegen")
Using the plugins DSL:
plugins {
id "com.mielke.codegen" version "0.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.mielke:codegen:0.0.12"
}
}
apply plugin: "com.mielke.codegen"