All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palantir.baseline.plugins.javaversions.BaselineJavaVersionExtension Maven / Gradle / Ivy

There is a newer version: 5.68.0
Show newest version
/*
 * (c) Copyright 2022 Palantir Technologies Inc. All rights reserved.
 *
 * 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
 *
 *     http://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 com.palantir.baseline.plugins.javaversions;

import javax.inject.Inject;
import org.gradle.api.Project;
import org.gradle.api.provider.Property;

/**
 * Extension named {@code javaVersion} used to set the
 * target and runtime java versions used for a single project.
 */
public class BaselineJavaVersionExtension {

    private final Property target;
    private final Property runtime;

    private final Property overrideLibraryAutoDetection;

    @Inject
    public BaselineJavaVersionExtension(Project project) {
        target = project.getObjects().property(ChosenJavaVersion.class);
        runtime = project.getObjects().property(ChosenJavaVersion.class);
        overrideLibraryAutoDetection = project.getObjects().property(Boolean.class);

        target.finalizeValueOnRead();
        runtime.finalizeValueOnRead();
        overrideLibraryAutoDetection.finalizeValueOnRead();
    }

    /**
     * Target {@link ChosenJavaVersion} for compilation.
     *
     * Also determines whether the `--enable-preview` flag should be used for compilation, producing bytecode with a
     * minor version of '65535'. Unlike normal bytecode, this bytecode cannot be run by a higher version of Java that
     * it was compiled by.
     */
    public final Property target() {
        return target;
    }

    public final void setTarget(int value) {
        target.set(ChosenJavaVersion.of(value));
    }

    public final void setTarget(String value) {
        target.set(ChosenJavaVersion.fromString(value));
    }

    /** Runtime {@link ChosenJavaVersion} for testing and distributions. */
    public final Property runtime() {
        return runtime;
    }

    public final void setRuntime(int value) {
        runtime.set(ChosenJavaVersion.of(value));
    }

    public final void setRuntime(String value) {
        runtime.set(ChosenJavaVersion.fromString(value));
    }

    /**
     * Overrides auto-detection if a value is present to force this module to be a
     * library ({@code true}) or a distribution {@code false}).
     */
    public final Property overrideLibraryAutoDetection() {
        return overrideLibraryAutoDetection;
    }

    public final void library() {
        overrideLibraryAutoDetection.set(true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy