open class ReleaseToGitlab : DefaultTask, Runnable
Creates a Gitlab release from an already existing package in the Gitlab maven repository
version - a function that returns the version number that should be released (e.g. 1.2.3)
names - a list of package names (e.g. org/openstreetmap/josm/gradle-josm-plugin)
ReleaseToGitlab(gitTagName: () -> String, artifactVersion: () -> String, names: Set<String>)
Creates a Gitlab release from an already existing package in the Gitlab maven repository |
var artifactVersion: () -> String |
|
val gitlabSettings: GitlabRepositorySettings.Builder
the settings defining a specific project on a specific GitLab instance where the release will be created |
|
var gitTagName: () -> String |
|
var names: Set<String>
a list of package names (e.g. |
open fun run(): Unit |