All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.darylteo.gradle.plugins.MavenPluginExtension.groovy Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
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
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy