
org.ryoframework.gradle.model.PublishModel.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
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