pl.allegro.tech.build.axion.release.domain.hooks.PushHookAction 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.hooks;
public class PushHookAction implements ReleaseHookAction {
@Override
public void act(HookContext hookContext) {
hookContext.push();
}
public final static class Factory extends DefaultReleaseHookFactory {
@Override
public ReleaseHookAction create() {
return new PushHookAction();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy