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

org.ryoframework.gradle.model.PublishModel.groovy Maven / Gradle / Ivy

Go to download

Plugin Gradle pour l'injection de divers propriétés de configuration des projets.

The newest version!
package org.ryoframework.gradle.model

class PublishModel {

    Closure pom = null
    String snapshot = null
    String release = null
    Closure credentials = null

    PublishModel() {
    }

    def pom(final Closure configureClosure) {
        pom = configureClosure
    }

    def credentials(final Closure configureClosure) {
        credentials = configureClosure
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy