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

ails-scripts.2.5.5.source-code.InstallDependency.groovy Maven / Gradle / Ivy

There is a newer version: 2.5.6
Show newest version
/*
 * Copyright 2004-2005 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.
 */

import org.codehaus.groovy.grails.resolve.IvyDependencyManager

/**
 * Gant script that handles the installation of Grails plugins
 *
 * @author Graeme Rocher
 * @author Sergey Nebolsin
 *
 * @since 0.4
 */

includeTargets << grailsScript("_GrailsInit")
includeTargets << grailsScript("_GrailsArgParsing")

target(installDependency:"Install a JAR dependency into a project") {
    depends(parseArguments)

    def dep
    if (argsMap.params) {
        dep = argsMap.params[0].toString()
    }
    else if (argsMap.group && argsMap.name && argsMap.version) {
        dep = argsMap
    }

    if (dep) {
        def manager = grailsSettings.createNewDependencyManager()
        manager.parseDependencies {
            repositories {
                grailsPlugins()
                grailsHome()
                mavenLocal()
                mavenCentral()
                mavenRepo "http://snapshots.repository.codehaus.org"
                mavenRepo "http://repository.codehaus.org"
                mavenRepo "http://download.java.net/maven/2/"
                mavenRepo "http://repository.jboss.com/maven2/"
                if (argsMap.repository) {
                    mavenRepo argsMap.repository.toString()
                }
            }

            dependencies {
                compile dep
            }
        }

        grailsConsole.updateStatus "Installing dependency '${dep}'. Please wait.."
        def report = manager.resolve()
        if (report.hasError()) {
            grailsConsole.error """
There was an error resolving the dependency '${dep}'.
This could be because you have passed an invalid dependency name or because the dependency was not found in one of the default repositories.
Try passing a valid Maven repository with the --repository argument."""
            exit 1
        }

        for (File file in report.allArtifacts) {
            if (argsMap.dir) {
                ant.copy(file:file, todir:argsMap.dir)
                grailsConsole.updateStatus "Installed dependency '${dep}' to location '${argsMap.dir}'"
            }
            else {
                grailsConsole.updateStatus "Installed dependency '${dep}'."
            }
        }
    }
}

setDefaultTarget("installDependency")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy