Search Gradle plugins

Version 0.3.0 (latest)

0.3.0

Created 04 July 2018.

Plugin for custom code generation processes

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.fhdo.seelab.CodeGenerator") version "0.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.SeelabFhdo:CodeGeneratorPlugin:0.3.0")
      }
    }
    
    apply(plugin = "de.fhdo.seelab.CodeGenerator")
  • Applying plugins to all subprojects .