org.jreleaser.model.internal.deploy.maven.AzureMavenDeployer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jreleaser-model-impl Show documentation
Show all versions of jreleaser-model-impl Show documentation
JReleaser Model implementation
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright 2020-2024 The JReleaser authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jreleaser.model.internal.deploy.maven;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.jreleaser.model.Active;
import org.jreleaser.model.Http;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static java.util.Collections.unmodifiableList;
import static java.util.Collections.unmodifiableMap;
import static java.util.stream.Collectors.toSet;
/**
* @author Andres Almiray
* @since 1.5.0
*/
public final class AzureMavenDeployer extends AbstractMavenDeployer {
private static final long serialVersionUID = 4799445800117349009L;
@JsonIgnore
private final org.jreleaser.model.api.deploy.maven.AzureMavenDeployer immutable = new org.jreleaser.model.api.deploy.maven.AzureMavenDeployer() {
private static final long serialVersionUID = -2548518547684068299L;
private Set extends org.jreleaser.model.api.deploy.maven.MavenDeployer.ArtifactOverride> artifactOverrides;
@Override
public String getGroup() {
return org.jreleaser.model.api.deploy.maven.MavenDeployer.GROUP;
}
@Override
public String getUrl() {
return AzureMavenDeployer.this.getUrl();
}
@Override
public String getUsername() {
return AzureMavenDeployer.this.getUsername();
}
@Override
public String getPassword() {
return AzureMavenDeployer.this.getPassword();
}
@Override
public Http.Authorization getAuthorization() {
return AzureMavenDeployer.this.getAuthorization();
}
@Override
public boolean isSign() {
return AzureMavenDeployer.this.isSign();
}
@Override
public boolean isChecksums() {
return AzureMavenDeployer.this.isChecksums();
}
@Override
public boolean isSourceJar() {
return AzureMavenDeployer.this.isSourceJar();
}
@Override
public boolean isJavadocJar() {
return AzureMavenDeployer.this.isJavadocJar();
}
@Override
public boolean isVerifyPom() {
return AzureMavenDeployer.this.isVerifyPom();
}
@Override
public boolean isApplyMavenCentralRules() {
return AzureMavenDeployer.this.isApplyMavenCentralRules();
}
@Override
public List getStagingRepositories() {
return unmodifiableList(AzureMavenDeployer.this.getStagingRepositories());
}
@Override
public Set extends org.jreleaser.model.api.deploy.maven.MavenDeployer.ArtifactOverride> getArtifactOverrides() {
if (null == artifactOverrides) {
artifactOverrides = AzureMavenDeployer.this.getArtifactOverrides().stream()
.map(MavenDeployer.ArtifactOverride::asImmutable)
.collect(toSet());
}
return artifactOverrides;
}
@Override
public String getType() {
return AzureMavenDeployer.this.getType();
}
@Override
public String getName() {
return AzureMavenDeployer.this.getName();
}
@Override
public Active getActive() {
return AzureMavenDeployer.this.getActive();
}
@Override
public boolean isEnabled() {
return AzureMavenDeployer.this.isEnabled();
}
@Override
public Map asMap(boolean full) {
return unmodifiableMap(AzureMavenDeployer.this.asMap(full));
}
@Override
public String getPrefix() {
return AzureMavenDeployer.this.prefix();
}
@Override
public Map getExtraProperties() {
return unmodifiableMap(AzureMavenDeployer.this.getExtraProperties());
}
@Override
public Integer getConnectTimeout() {
return AzureMavenDeployer.this.getConnectTimeout();
}
@Override
public Integer getReadTimeout() {
return AzureMavenDeployer.this.getReadTimeout();
}
};
public AzureMavenDeployer() {
super(org.jreleaser.model.api.deploy.maven.AzureMavenDeployer.TYPE);
}
@Override
public org.jreleaser.model.api.deploy.maven.AzureMavenDeployer asImmutable() {
return immutable;
}
@Override
protected void asMap(boolean full, Map props) {
// noop
}
}