de.benediktritter.maven-plugin-development
Owner: Benedikt Ritter
Gradle plugin for developing Apache Maven plugins
https://britter.github.io/maven-plugin-development
Sources: https://github.com/britter/maven-plugin-development
Version 0.4.3 (latest)
0.4.3
Created 29 February 2024.
Gradle plugin for developing Apache Maven plugins
Using the plugins DSL:
plugins {
id("de.benediktritter.maven-plugin-development") version "0.4.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.benediktritter:plugin:0.4.3")
}
}
apply(plugin = "de.benediktritter.maven-plugin-development")
Using the plugins DSL:
plugins {
id "de.benediktritter.maven-plugin-development" version "0.4.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.benediktritter:plugin:0.4.3"
}
}
apply plugin: "de.benediktritter.maven-plugin-development"