1
vote
2answers
26 views

How do I run ant from within the _Events.groovy script using the AntBuilder?

I am trying to automate a build process that involves looping over a few directories and running "ant all" on all of them. All of them have a a simple build.xml. I can do this via a shell script but ...
0
votes
1answer
39 views

Groovy AntBuilder file sorting

groovy AntBuilder style select sorted files: def ant = new AntBuilder(); def files = ant.first(count:1){ sort(){ fileset(dir:/R:\goagent2/){ depth max:0 ...
1
vote
0answers
45 views

Groovy Log Ant Output w/ Java.util.logging

I'm trying to include Ant output in my regular log file. I have: def log = Logger.getLogger("ScriptName") def fileHandler = new FileHandler(logFileName) fileHandler.setFormatter(new ...
0
votes
1answer
49 views

How to set Ant reference to a FileSet from within <groovy/> Ant task?

I have something like: <groovy> import org.apache.tools.ant.types.FileSet import org.apache.tools.ant.types.selectors.FilenameSelector def aoeu = new FileSet() aoeu.setDir(new ...
1
vote
0answers
33 views

How do I get GroovyDoc to properly document return types with generic type parameters?

I have an ant task that generates GroovyDoc defined in my Maven pom file. Everything is looking great except that the method documentation for methods that return something like this: ...
1
vote
0answers
34 views

Groovy-Ant Preserve File Structure in Zip Archive

I am working with Ant in Groovy, and I want to operate on all files in a directory that match certain criteria. I have the following: def fileSet = ant.fileset(dir: srcDir, id: "files", includes: ...
0
votes
1answer
37 views

Preserve Original Filenames in Groovy Ant Task

I have the following code: new AntBuilder().zip( destFile: "${file}.zip" ) { fileset( dir: srcDir ) { include( name:pattern ) } } In this example I'd like ant to ...
2
votes
1answer
78 views

Enable verbose output from groovy's AntBuilder

Is there a way to turn debug/verbose output on for groovy's AntBuilder? In other words, I want to enable more detailed output like one would get with ant -verbose from the command line. I know about ...
1
vote
0answers
97 views

Groovy-TestNG-Ant running error

I've faced with next problem. Trying to create pilot test-project using Groovy, TestNG, ant. If I run tests from my IDE (Eclipse) - all is ok. But when I try run tests using ant - not easy for me ...
0
votes
2answers
72 views

Groovy ant task: Specifiying additional groovy files

In our ANT build files we sometimes call groovy scripts <groovy src="${groovy.script.dir}/DoIt.groovy"/> Is there a way to specify one or more additional Groovy files? Our use case is that we ...
0
votes
1answer
177 views

Zip files/Directories in Groovy with AntBuilder

I am trying to zip files and directories in Groovy using AntBuilder. I have the following code: def ant = new AntBuilder() ant.zip(basedir: "./Testing", destfile:"${file}.zip",includes:file.name) ...
0
votes
1answer
293 views

Using groovy.util.AntBuilder from java

In groovy the groovy.util.AntBuilder can be used to eg. unzip a file into a folder: AntBuilder ant = new AntBuilder(); ant.unzip(src: file.getPath(), dest: outputFolder.getPath()); Now I would ...
0
votes
2answers
350 views

Axis2 with complexTypes in Groovy

So I'm having a couple of ANT scripts using Groovy to process complex calculations normal ANT can't do (at least afaik). I'm trying to access an Axis2 web service using a SOAP-envelope via Groovy. The ...
1
vote
2answers
79 views

How to link or copy in Ant?

I want in Ant to do the equivalent of: mkdir -p build/test ln */build/test build/test or: mkdir -p build/test ln -s */build/test build/test or: mkdir -p build/test cp */build/test build/test ...
0
votes
0answers
84 views

Logical substitute for file in Groovy calling ant task?

I have a groovy script which traverses all subdirectories in a directory and for each of them does an ant build. The ant script is stored in the script as a variable. Each time I call the ant script, ...
1
vote
2answers
168 views

Loading a groovy class in ant build.xml and storing return value in ant property?

I have folder test containing: test -> groovy -> MyClass.groovy -> build.xml The file MyClass.groovy contains: class MyClass { void firstMethod(int i) { println i } ...
1
vote
2answers
1k views

Cucumber-JVM ant task

How do i tell ant to execute all cucumber tests (features, implementations) in a folder? I'm stuck using this example <target name="runcukes" depends="compile-test"> <mkdir ...
0
votes
1answer
75 views

@Grab annotation fails under Ant

I'm using a @Grab annotation to grab the definition of an Html parser I can give to the XMLSlurper (I think it's the tagsoup parser) and all is good when I run my script from the cmd line. If I invoke ...
1
vote
1answer
474 views

Compile Groovy file with ant task

I don't understand why groovy.compile task runs when I'm trying to run compile task. <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc"> <classpath> <path ...
2
votes
2answers
528 views

Groovy unable to resolve java class

i got a problem by executing groovy from an ant file. In Eclipse with a launcher, everything works fine but wehn i run the ant file i got the following output: Main.groovy: 71: unable to resolve ...
0
votes
2answers
200 views

Ant building script using groovy and regular expressions, how to build pattern using string value?

How to use string value as a part of regular expression in groovy? I'am writing ant build script using groovy, here is some snapshot: <target name="groovy.showProperties"> <groovy> ...
1
vote
1answer
140 views

How to convert Ant property into Ant resource?

I would like to convert something like: <property name='aoeu' value='a,o,e,u'/> to: <path id='ueoa'> <pathelement location="a/file"/> <pathelement ...
0
votes
1answer
494 views

Run Makefile + Ant Buildfile inside Maven pom.xml

I've checked out jquery + jquery-ui from GitHub into my src/main/webapp/resources/js folder. Now I would like to do the minifying stuff by pom.xml (jquery uses a Makefile - jquery-ui uses an Ant ...
0
votes
1answer
190 views

Ant call to grails fails with “[exec] Application is pre-Grails 0.5, please run: grails upgrade”

I am facing a rather odd problem with our groovy build script. The whole project uses a helper groovy script that calls all other build scripts (maven and ant). One of the ant targets invoked by the ...
0
votes
1answer
109 views

Is there a way in Ant (using Groovy?) to post info to an http URL and then parse the response?

I've found a way to read an HTML page in Ant with Groovy + HTMLCleaner (see: Parse HTML using with an Ant Script ) but I am unable to find a way to first POST some data to a URL and then get a ...
0
votes
1answer
352 views

accessing ant properties in groovy taskdef gives Null Pointer Exception

I am trying to execute following code but I am getting null pointer exception. <property name="from" value="from"/> <property name="to" value="to"/> <taskdef ...
2
votes
1answer
145 views

Groovy Task in Ant Script to Customize Cobertura?

I am trying to customize the behavior of Cobertura for code coverage.. By default Cobertura instruments all the classes in the build but I want to read a particular xml which typically looks like : ...
2
votes
1answer
267 views

Ant, Groovy, GWT Invoking GWT compile with AntBuilder

Hi I'm working my way through creating a groovy script to automate building and packaging a gwt application. AntBuilder is bundled as part of Groovy and I really like the concept. It really does ...
0
votes
1answer
204 views

Groovy: How to revolve full path of a symlink

In Groovy/Ant, I need to get the actual path that a particular symlink points to. For example, if I have some symlink foo pointing at /home/documents/bar foo -> /home/documents/bar Is there a ...
1
vote
1answer
2k views

Ant in Groovy: Copying a single file

I know that when using Ant from Groovy, you can do something like the following to copy files: copy(todir:myDir) { fileset(dir:"src/test") { include(name:"**/*.groovy") } } Is there a more ...
2
votes
1answer
480 views

Gant, Groovy scp and Ant

I'm trying to scp a directory to a remote server, but I'm getting this error. Please help Exactly one of [file|localfile|remotefile] or one or more nested filesets is required. ...
2
votes
1answer
2k views

getting well formed output from ant - sshexec in groovy script

my problem is, that the output from the ant task alwas has some [ssh-exec] infotext at the beginning. can i suppress / disable that? my code so far: def ant = new AntBuilder() // .... variable ...
4
votes
4answers
2k views

How do I execute ant.java properly from gradle?

I'm trying to invoke a jar, but I don't see any output when I run the command without args, and when I do run with args, I get the following error: [ant:java] The args attribute is deprecated. Please ...
1
vote
1answer
511 views

Groovy/Ant: Zipping two files in a Groovy-loop in an ant Task

i have following problem: 1.) I have to files 12345678.xml-out and 12345678.xml and i want them to be zipped into 12345.zip. The problem is i have a loop because there can be more than one of such ...
2
votes
2answers
645 views

Some issue with AntBuilder?

When i am deploying grails application, it's show classnotfound Exception in AntBuilder class?. Do i need to add any jar files to project? Thanks in advance. java.lang.ClassNotFoundException: ...
1
vote
1answer
304 views

How to display all resources included in a Groovy AntBuilder classpath?

I am using Groovy's AntBuilder to build a Java project. An error is occurring where classes are missing that really look like they should be included. I want to print out every JAR/WAR that's ...
0
votes
1answer
1k views

Running tomcat jasper task (jspc) with gradle build

I'm trying to compile our jsp files using jspc within gradle but am getting an exception. Here is the pertinent gradle section //tomcatHome is defined in gradle.properties ant.tomcatHome = ...
0
votes
2answers
83 views

Detecting the running of all tests, versus one test or a class, from eventTestPhaseStart?

I want this: eventTestPhaseStart = { name -> ant.sequential { clean() } } to only run when I run grails test-app to test all tests at once, and NOT before each test is run ...
10
votes
3answers
964 views

Running groovy unit tests in ant for a java project

I have a Java project with some unit tests written using JUnit. Recently some new unit tests have been added that are written in groovy (also using JUnit) as it's easier to make those more expressive ...
0
votes
1answer
284 views

Groovy AntBuilder, omit conditional attributes, like “setOmitNullAttributes” functionality on MarkupBulder

sample code: def ant = new AntBuilder() ant.'antlib:org.jacoco.ant:agent'( enabled: enabled, property: 'agentvmparam') When that "enabled" parameter is null, I'd ...
1
vote
2answers
3k views

componentdef error with ant

I have an relatively old Grails app that uses ant to build the application. In the test server it build without any problems, but when I try to run it on my PC, I get a consistent error: Caused by: ...
1
vote
1answer
370 views

Does it make sense to use ant build with a grails application?

If I understand correctly, the purpose of groovy and grails are to execute without (visible) compilation. However, I have inherited some old grails code that I can't build any more. I can see the ...
0
votes
4answers
223 views

Problem with Gant

I was trying Ant.echo("hello gant") but I am getting this error message: No such property: Ant for class: build Any help would be highly appreciated.
5
votes
4answers
3k views

Execute my groovy script with ant or maven

I have the following 1 java class 1 bat file (starts the groovy script) 1 groovy file All is in the same folder Now I want to use Maven or Ant to run the groovy file but I cant get it to work. Is ...
0
votes
1answer
700 views

How to remove adornments like [exec] when using groovy's AntBuilder

I'm using Groovy's AntBuilder to execute Ant tasks: def ant = new AntBuilder() ant.sequential { ant.exec(executable: "cmd", dir: "..", resultproperty: "exec-ret-code") { arg(value: "/c") ...
0
votes
2answers
615 views

Issue with using the antbuilder mail task in groovy 1.7.2

I recently have a problem using the antbuilder mail task in groovy. It always throws the following exception: [mail] Sending email: null [mail] Failed to send email: 0 Caught: : ...
1
vote
2answers
686 views

How to set the build.xml for the Groovy Antbuilder?

I want to execute a build.xml (Ant buildfile) from using GMaven (Maven Plugin for inline execution of Groovy in a POM). Since I have to execute the buildfile several times using the ...
0
votes
1answer
169 views

Can Grails output error messages in emacs format?

Ant has a -e option for outputting error messages that can be parsed by emacs' compile command. For example, it is possible to do M-x compile, ant -e, then nagivate to any errors with C-x `. Is it ...
1
vote
2answers
664 views

how to run existing ant script from groovy

my build is a 3 step process. run ant to build. transfer war to server. touch reload file. I have transfered last two steps in groovy, using antbuilder. However, I am not able to run my existing ...
4
votes
4answers
3k views

how to use execute() in groovy to run any command

I usually build my project using these two commands from command line (dos) G:\> cd c: C:\> cd c:\my\directory\where\ant\exists C:\my\directory\where\ant\exists> ant -Mysystem ... ..... ...

1 2