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.6

Created 15 October 2019.

code generation allowing the ability to setup custom project templates

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.mielke.codegen"

Learn how to apply plugins to subprojects