com.darylteo.gradle.plugins.MavenPluginExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-plugin Show documentation
Show all versions of maven-plugin Show documentation
Convenience plugin for Maven related configuration
package com.darylteo.gradle.plugins
import org.gradle.api.artifacts.maven.MavenPom
class MavenPluginExtension {
// repository configuration
String username = ''
String password = ''
String repository = ''
String snapshotRepository = ''
// artifact identifier
boolean release = false
// pom configuration
def pomConfigClosures = []
void project(Closure> closure) {
this.pomConfigClosures += closure
}
}