pl.allegro.tech.build.axion.release.domain.RepositoryConfig.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axion-release-plugin Show documentation
Show all versions of axion-release-plugin Show documentation
Gradle release and version management plugin
package pl.allegro.tech.build.axion.release.domain
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.InputDirectory
import org.gradle.api.tasks.Optional
class RepositoryConfig {
@Input
String type = 'git'
@InputDirectory
File directory
@Input
String remote = 'origin'
@Input
@Optional
def customKey
@Input
@Optional
String customKeyPassword
@Input
@Optional
String customUsername
@Input
String customPassword = ''
@Input
boolean pushTagsOnly = false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy