
pl.allegro.tech.build.axion.release.domain.LocalOnlyResolver 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
The newest version!
package pl.allegro.tech.build.axion.release.domain;
public class LocalOnlyResolver {
private final boolean localOnly;
public LocalOnlyResolver(boolean localOnly) {
this.localOnly = localOnly;
}
public boolean localOnly(boolean remoteAttached) {
return localOnly || !remoteAttached;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy