org.jreleaser.model.internal.assemble.AbstractJavaAssembler 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.assemble;
import org.jreleaser.model.Constants;
import org.jreleaser.model.internal.common.Artifact;
import org.jreleaser.model.internal.common.Glob;
import org.jreleaser.model.internal.common.Java;
import org.jreleaser.mustache.TemplateContext;
import org.jreleaser.version.SemanticVersion;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import static org.jreleaser.util.StringUtils.isNotBlank;
/**
* @author Andres Almiray
* @since 0.8.0
*/
public abstract class AbstractJavaAssembler, A extends org.jreleaser.model.api.assemble.Assembler> extends AbstractAssembler implements JavaAssembler {
private static final long serialVersionUID = -1293187422642323327L;
private final Artifact mainJar = new Artifact();
private final List jars = new ArrayList<>();
private final Java java = new Java();
private String executable;
protected AbstractJavaAssembler(String type) {
super(type);
}
@Override
public void merge(S source) {
super.merge(source);
this.executable = merge(this.executable, source.getExecutable());
setJava(source.getJava());
setMainJar(source.getMainJar());
setJars(merge(this.jars, source.getJars()));
}
@Override
public TemplateContext props() {
TemplateContext props = super.props();
props.set(Constants.KEY_DISTRIBUTION_EXECUTABLE, executable);
props.setAll(java.resolvedExtraProperties());
props.set(Constants.KEY_DISTRIBUTION_JAVA_GROUP_ID, java.getGroupId(), "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_ARTIFACT_ID, java.getArtifactId(), "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_MAIN_CLASS, java.getMainClass(), "");
if (isNotBlank(java.getVersion())) {
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION, java.getVersion());
SemanticVersion jv = SemanticVersion.of(java.getVersion());
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_MAJOR, jv.getMajor(), "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_MINOR, jv.getMinor(), "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_PATCH, jv.getPatch(), "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_TAG, jv.getTag(), "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_BUILD, jv.getBuild(), "");
} else {
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION, "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_MAJOR, "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_MINOR, "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_PATCH, "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_TAG, "");
props.set(Constants.KEY_DISTRIBUTION_JAVA_VERSION_BUILD, "");
}
return props;
}
@Override
public String getExecutable() {
return executable;
}
@Override
public void setExecutable(String executable) {
this.executable = executable;
}
@Override
public Java getJava() {
return java;
}
@Override
public void setJava(Java java) {
this.java.merge(java);
}
@Override
public Artifact getMainJar() {
return mainJar;
}
@Override
public void setMainJar(Artifact mainJar) {
this.mainJar.merge(mainJar);
}
@Override
public List getJars() {
return jars;
}
@Override
public void setJars(List jars) {
this.jars.clear();
this.jars.addAll(jars);
}
@Override
public void addJars(List jars) {
this.jars.addAll(jars);
}
@Override
public void addJar(Glob jar) {
if (null != jar) {
this.jars.add(jar);
}
}
@Override
protected void asMap(boolean full, Map props) {
props.put("executable", executable);
props.put("mainJar", mainJar.asMap(full));
Map> mappedJars = new LinkedHashMap<>();
for (int i = 0; i < jars.size(); i++) {
mappedJars.put("glob " + i, jars.get(i).asMap(full));
}
props.put("jars", mappedJars);
props.put("extraProperties", getExtraProperties());
if (java.isEnabled()) {
props.put("java", java.asMap(full));
}
}
}