Search Gradle plugins

Version 0.2.1

Created 02 May 2020.

Gradle plugin for developing Apache Maven plugins

Using the plugins DSL:

plugins {
  id("de.benediktritter.maven-plugin-development") version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.benediktritter:plugin:0.2.1")
  }
}

apply(plugin = "de.benediktritter.maven-plugin-development")

Using the plugins DSL:

plugins {
  id "de.benediktritter.maven-plugin-development" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.benediktritter:plugin:0.2.1"
  }
}

apply plugin: "de.benediktritter.maven-plugin-development"

Learn how to apply plugins to subprojects