Search Gradle plugins

Version 2.1.2

Created 04 February 2022.

Gradle plugin to support Dynamic Extension development

Using the plugins DSL:

plugins {
  id("eu.xenit.de") version "2.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("eu.xenit.de:gradle-plugin:2.1.2")
  }
}

apply(plugin = "eu.xenit.de")

Using the plugins DSL:

plugins {
  id "eu.xenit.de" version "2.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "eu.xenit.de:gradle-plugin:2.1.2"
  }
}

apply plugin: "eu.xenit.de"

Learn how to apply plugins to subprojects