Search Gradle plugins

com.mielke.codegen

code generation allowing the ability to setup custom project templates

https://gitlab.com/joemielke/codegen

Sources: https://gitlab.com/joemielke/codegen

Version 0.0.11

Created 17 May 2020.

code generation allowing the ability to setup custom project templates

Using the plugins DSL:

plugins {
  id("com.mielke.codegen") version "0.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mielke:codegen:0.0.11")
  }
}

apply(plugin = "com.mielke.codegen")

Using the plugins DSL:

plugins {
  id "com.mielke.codegen" version "0.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mielke:codegen:0.0.11"
  }
}

apply plugin: "com.mielke.codegen"

Learn how to apply plugins to subprojects