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

org.gradle.util.internal.GroovyDependencyUtil Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2022 the original author or 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
 *
 *      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 org.gradle.util.internal;

import javax.annotation.Nullable;

public class GroovyDependencyUtil {
    /**
     * Returns Groovy artifact group name based on the Groovy version.
     */
    public static String groovyGroupName(String version) {
        return groovyGroupName(VersionNumber.parse(version));
    }

    /**
     * Returns Groovy artifact group name based on the Groovy version.
     */
    public static String groovyGroupName(VersionNumber version) {
        return version.getMajor() >= 4
            ? "org.apache.groovy"
            : "org.codehaus.groovy";
    }

    /**
     * Returns Groovy artifact in dependency notation: ({@code group:module:version}).
     */
    public static String groovyModuleDependency(String module, String version) {
        return groovyModuleDependency(module, version, null);
    }

    /**
     * Returns Groovy artifact in dependency notation: ({@code group:module:version[:classifier]}).
     */
    public static String groovyModuleDependency(String module, String version, @Nullable String classifier) {
        return groovyModuleDependency(module, VersionNumber.parse(version), classifier);
    }

    /**
     * Returns Groovy artifact in dependency notation: ({@code group:module:version}).
     */
    public static String groovyModuleDependency(String module, VersionNumber version) {
        return groovyModuleDependency(module, version, null);
    }

    /**
     * Returns Groovy artifact in dependency notation: ({@code group:module:version[:classifier]}).
     */
    public static String groovyModuleDependency(String module, VersionNumber version, @Nullable String classifier) {
        StringBuilder dependency = new StringBuilder();
        dependency.append(groovyGroupName(version));
        dependency.append(':');
        dependency.append(module);
        dependency.append(':');
        dependency.append(version);
        if (classifier != null && !classifier.isEmpty()) {
            dependency.append(':');
            dependency.append(classifier);
        }
        return dependency.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy