Search Gradle plugins

Version 1.0.0 (latest)

Created 05 February 2022.

GerdaAPI code generation for events

Using the plugins DSL:

plugins {
  id("fun.fotontv.event-gerda-gen") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("fun.fotontv:event-gerda-gen:1.0.0")
  }
}

apply(plugin = "fun.fotontv.event-gerda-gen")

Using the plugins DSL:

plugins {
  id "fun.fotontv.event-gerda-gen" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "fun.fotontv:event-gerda-gen:1.0.0"
  }
}

apply plugin: "fun.fotontv.event-gerda-gen"

Learn how to apply plugins to subprojects