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

io.micronaut.starter.options.BuildTool Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
/*
 * Copyright 2017-2022 original 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 io.micronaut.starter.options;

import io.micronaut.core.annotation.NonNull;
import io.micronaut.starter.application.Project;
import io.micronaut.starter.build.gradle.GradleDsl;

import java.util.List;
import java.util.Locale;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public enum BuildTool {
    GRADLE("build/libs", "build.gradle", "-*-all.jar", "Gradle (Groovy)"),
    GRADLE_KOTLIN("build/libs", "build.gradle.kts", "-*-all.jar", "Gradle (Kotlin)"),
    MAVEN("target", "pom.xml", "-*.jar", "Maven");

    public static final BuildTool DEFAULT_OPTION = BuildTool.GRADLE_KOTLIN;

    private final String jarDirectory;
    private final String fileName;
    private final String shadeJarPattern;
    private final String title;

    BuildTool(String jarDirectory, String fileName, String shadeJarPattern, String title) {
        this.jarDirectory = jarDirectory;
        this.fileName = fileName;
        this.shadeJarPattern = shadeJarPattern;
        this.title = title;
    }

    public String getJarDirectory() {
        return jarDirectory;
    }

    public String getShadeJarDirectoryPattern(Project project) {
        Objects.requireNonNull(project, "Project should not be null");
        return getJarDirectory() + '/' + project.getName() + shadeJarPattern;
    }

    public String getBuildFileName() {
        return fileName;
    }

    @Override
    public String toString() {
        return getName();
    }

    @NonNull
    public String getName() {
        return name().toLowerCase(Locale.ENGLISH);
    }

    public boolean isGradle() {
        return this == GRADLE || this == GRADLE_KOTLIN;
    }

    public Optional getGradleDsl() {
        if (isGradle()) {
            if (this == BuildTool.GRADLE_KOTLIN) {
                return Optional.of(GradleDsl.KOTLIN);
            } else if (this == BuildTool.GRADLE) {
                return Optional.of(GradleDsl.GROOVY);
            }
        }
        return Optional.empty();
    }

    public String getTitle() {
        return title;
    }

    /**
     *
     * @return Every BuildTool which evaluates to true for {@link BuildTool#isGradle()}
     */
    public static List valuesGradle() {
        return Stream.of(BuildTool.values())
                .filter(BuildTool::isGradle)
                .collect(Collectors.toList());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy