pl.allegro.tech.build.axion.release.MarkNextVersionTask.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
import org.gradle.api.DefaultTask
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.Optional
import org.gradle.api.tasks.TaskAction
import pl.allegro.tech.build.axion.release.domain.NextVersionMarker
import pl.allegro.tech.build.axion.release.domain.VersionConfig
import pl.allegro.tech.build.axion.release.domain.properties.Properties
import pl.allegro.tech.build.axion.release.infrastructure.di.Context
import pl.allegro.tech.build.axion.release.infrastructure.di.GradleAwareContext
class MarkNextVersionTask extends DefaultTask {
@Input
@Optional
VersionConfig versionConfig
@TaskAction
void release() {
VersionConfig config = GradleAwareContext.configOrCreateFromProject(project, versionConfig)
Context context = GradleAwareContext.create(project, config)
NextVersionMarker marker = new NextVersionMarker(context.scmService())
Properties rules = context.rules()
marker.markNextVersion(rules.nextVersion, rules.tag, config)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy