org.jreleaser.ant.tasks.AbstractPlatformAwareJReleaserTask Maven / Gradle / Ivy
/*
* 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.ant.tasks;
import org.jreleaser.util.PlatformUtils;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* @author Andres Almiray
* @since 0.6.0
*/
abstract class AbstractPlatformAwareJReleaserTask extends AbstractJReleaserTask {
protected final List selectPlatforms = new ArrayList<>();
protected final List rejectPlatforms = new ArrayList<>();
protected boolean selectCurrentPlatform;
public void setSelectCurrentPlatform(boolean selectCurrentPlatform) {
this.selectCurrentPlatform = selectCurrentPlatform;
}
public void setSelectPlatforms(String selectPlatforms) {
this.selectPlatforms.addAll(expandAndCollect(selectPlatforms));
}
public void setSelectPlatforms(List selectPlatforms) {
if (null != selectPlatforms) {
this.selectPlatforms.addAll(selectPlatforms);
}
}
public void setRejectPlatforms(String rejectPlatforms) {
this.rejectPlatforms.addAll(expandAndCollect(rejectPlatforms));
}
public void setRejectPlatforms(List rejectPlatforms) {
if (null != rejectPlatforms) {
this.rejectPlatforms.addAll(rejectPlatforms);
}
}
@Override
protected List collectSelectedPlatforms() {
boolean resolvedSelectCurrentPlatform = resolveBoolean(org.jreleaser.model.api.JReleaserContext.SELECT_CURRENT_PLATFORM, selectCurrentPlatform);
if (resolvedSelectCurrentPlatform) return Collections.singletonList(PlatformUtils.getCurrentFull());
return resolveCollection(org.jreleaser.model.api.JReleaserContext.SELECT_PLATFORMS, selectPlatforms);
}
@Override
protected List collectRejectedPlatforms() {
return resolveCollection(org.jreleaser.model.api.JReleaserContext.REJECT_PLATFORMS, rejectPlatforms);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy