Search Gradle plugins

Version 0.2.5

Created 10 April 2018.

Plugin for custom code generation processes

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.SeelabFhdo:CodeGeneratorPlugin:0.2.5")
  }
}

apply(plugin = "de.fhdo.seelab.CodeGenerator")

Using the plugins DSL:

plugins {
  id "de.fhdo.seelab.CodeGenerator" version "0.2.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.SeelabFhdo:CodeGeneratorPlugin:0.2.5"
  }
}

apply plugin: "de.fhdo.seelab.CodeGenerator"

Learn how to apply plugins to subprojects