Search Results

1
vote

groovy inside ant: how to access refids from grooy that are defined by ant tags

According to the Groovy Ant Task documentation, one of the bindings for …
3
votes

Why does Apache return a 503 error for ant’s get task, but not for my browser?

503 is Service Unavailable, which probably means that the src URL isn't getting interpreted properly and sent by the ANT task or perhaps the JRE. Here are some things …
0
votes

What are the custom targets you all run when using ant to build project?

I second the 'good idea' part, although for a project of reasonable size you might want to make it part of an automated build, like one of the CI Servers (Bamboo, Contiuum). You might also …
2
votes

How get a list of files under a subversion-url in ant?

The Subclipse Project of Subversion provides svnant …
0
votes

EMMA coverage tool not displaying line-by-line coverage

Could you post the portion of your build.xml that generates the EMMA reports? Sounds like a report sourcepath issue. report sourcepath s …
2
votes

Can I find and import files into an ant-buildscript at runtime?

In the documentation for the import task, note the optional attribute. Set this to true an …
1
vote

Groovy in Ant build.xml (with Java classes)

@VonC is correct about including Groovy scripting in your Ant build. To expand a bit: To compile .groovy and .java sources together for use in the …
1
vote

EMMA won’t cover one of my projects

What does the <emma.report> element look like? You may want to look at this FAQ concerning …
1
vote

How to move only the current file with Eclipse and/or Ant?

Add a target to your ant build file to copy a single jsp using a command line property definition as @matt b described. Create a new exter …
1
vote

Setting a Coverage Threshold using Emma and Ant

Not out of the box. However, the report.metrics property or attribute of …
2
votes

read property value in Ant

In Ant 1.6 or later you can use LoadProperties with a nested FilterChain <loadproperties srcFile="${property.file.name}"> <filterchain> & …
0
votes

Unable to Locate Properties File Inside Jar During Junit Tests via Ant

The first steps of ant debugging are always: ant -verbose ant -debug Review the output for those targets that relate to …
6
votes

subversion ant task

By using the nested <fileset> the command ends up calling update for every file in the current directory hierarchy. That's probably why it takes two hours. …