/* * Copyright 2008 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.springframework.core.io.FileSystemResource import org.codehaus.griffon.util.GriffonNameUtils /** * Gant script for creating Griffon artifacts of all sorts. * * @author Peter Ledbrook */ target(createArtifact: "Creates a specific Griffon artifact") { Map args = [:] -> def suffix = args["suffix"] def type = args["type"] def artifactPath = args["path"] ant.mkdir(dir: "${basedir}/${artifactPath}") // Extract the package name if one is given. def name = args["name"] def pkg = null def pos = name.lastIndexOf('.') if (pos != -1) { pkg = name[0.. createArtifact(name: args["name"], suffix: "${args['suffix']}Tests", type: "Tests", path: "test/integration") } target (createUnitTest: "Creates a unit test for an artifact") { Map args = [:] -> createArtifact(name: args["name"], suffix: "${args['suffix']}Tests", type: "Tests", path: "test/unit") } target(promptForName: "Prompts the user for the name of the Artifact if it isn't specified as an argument") { Map args = [:] -> if (!argsMap["params"]) { ant.input(addProperty: "artifact.name", message: "${args["type"]} name not specified. Please enter:") argsMap["params"] << ant.antProject.properties."artifact.name" } }