Index: scripts/_Events.groovy =================================================================== --- scripts/_Events.groovy (revision 51520) +++ scripts/_Events.groovy (working copy) @@ -2,14 +2,8 @@ import org.codehaus.groovy.grails.commons.GrailsClassUtils eventGenerateControllerEnd = {domainName -> - typeName = "ControllerUnitTests" - artifactName = "test-templates/ControllerUnitTests" - artifactPath = "test/unit" + createArtifact(name: domainName, suffix: "ControllerUnitTests", type: "test-templates/ControllerUnitTests", path: "test/unit") - // set the domainName into args for createArtefact - args = domainName - createArtifact() - String propertyName = GrailsClassUtils.getPropertyNameRepresentation(domainName) if (Ant.antProject.properties.'app.grails.version' != '1.0.3'){ @@ -20,4 +14,4 @@ Ant.replacefilter(token: '@domain.name@', value: ClassUtils.getShortClassName(domainName)) Ant.replacefilter(token: '@property.name@', value: propertyName) } -} \ No newline at end of file +} Index: plugin.xml =================================================================== --- plugin.xml (revision 51520) +++ plugin.xml (working copy) @@ -1,4 +1,4 @@ - + Mike Hugo mike@piragua.com Test Templates @@ -9,4 +9,8 @@ http://grails.org/TestTemplate+Plugin + + + + \ No newline at end of file Index: application.properties =================================================================== --- application.properties (revision 51520) +++ application.properties (working copy) @@ -1,4 +1,5 @@ -#Do not edit app.grails.* properties, they may change automatically. DO NOT put application configuration in here, it is not the right place! -#Fri Nov 14 19:18:22 CST 2008 -app.grails.version=1.0.4 +#utf-8 +#Wed Apr 29 00:22:49 EDT 2009 +plugins.testing=0.5 +app.grails.version=1.1 app.name=testTemplate