Tagged Questions
0
votes
1answer
39 views
ant - Need to get only file name without extension and entire path
I have couple of .xml files in a folder.I want to loop on each .xml file.It is getting fine.
I want to take only .xml file name without entire path.
How can i achieve that.?
I am using the below ...
0
votes
1answer
23 views
Ant task to check that xml node exists in xml file
I have xml file inside that I want to add xml say
<car name="BMW">
<color>Red</color>
<model>x3</model>
</car>
I wish to check if node already exists ...
0
votes
1answer
36 views
antcall in foreach is not executing loop
I want to build couple of projects based on no of .composites by using ant scripts.
i added all the taskref tags,lib path every thing in my build.xml file.
i wrote the following piece of code for the ...
0
votes
2answers
20 views
ant warning : could not load antlib.xml
I have the antcontrib.jar in my lib folder of Ant. I set my ant home as "C/Prog Files/apache-ant".
But still when I run my build.xml, i get the warning "could not load antlib.xml and ...
1
vote
1answer
30 views
Structure ant projects
I am currently writing an ant project xml file and I am looking for some hints and tips to improve the structure and readability of the project.
<target name="eatnutsOnClient" >
...
0
votes
0answers
48 views
Ant task for not expand properties from list
I use for task from ant-contib.
I define few properties:
<property name="prefix" value="myprefix" />
<property name="prop1" value="${prefix}prop1" />
<property name="prop2" ...
0
votes
1answer
39 views
How to emulate if-elseif-else in Ant without using Ant-contrib?
I need an if-elseif-else conditional statement in Ant.
I do not want to use Ant-contrib.
I tried the solution here
<target name="condition.check">
<input message="Please enter ...
1
vote
1answer
83 views
Check multiple file exists or not using ANT
I am using ANT to check count for set of files in two jars.
I am not able to check whether the files of same pattern exists or not.
for e.g. I have 2 files like /host/user/dir1/ABC1.txt and ...
0
votes
1answer
37 views
Break or Continue Implemented?
Does the for/foreach loops in ant-contrib support the equivalent of a "break" or "continue" statement? As far as I can tell, they do not.
Are there any viable work-arounds?
Thanks
-T
1
vote
1answer
45 views
How to fetch files from a directory and execute them parallely 5 at a time
I'm Using to ant to fetch all files in a directory and execute only 5 files parallely and next 5 five again. Already executed file should not be executed again.
<target name="ParallelTest" ...
0
votes
0answers
25 views
How can I get the file extension from file name in Ant?
I tired this but I am not able to get the last param.
<target name="test" description="Test features">
<property name="propA" value="roles.xml"/>
<echo message="${propA}"/>
...
0
votes
1answer
32 views
ant iterate inside a folder
I tried to get the files name of a folder using the following script
<target name="test1" depends ="init">
<fileset id="appendJars" dir="${ant.dir}/test">
<include ...
0
votes
2answers
237 views
Getting an error “Could not load definitions from resource net/sf/antcontrib/antcontrib.properties. It could not be found.”
I am getting an error Could not load definitions from resource net/sf/antcontrib/antcontrib.properties. It could not be found. when I am trying to ant build on eclipse. So I downloaded ...
0
votes
2answers
164 views
replace each xml numeric property by its arithmetic product in string by regexp using ant or ant extensions?
I have a xml string with (among others) properties such as x-pos="NN" and y-pos="NN" where NN is a positive or negative number.
I want to read every value and change it to its arithmetic product - ...
0
votes
1answer
283 views
Loop through directory structure in ant
We want to loop through directory structure in ant without using foreach .
Is there any elegant way to do the same ?
0
votes
2answers
42 views
exception when using if statment in ant script
I am trying to compare the value of a properties variable with a string as following
<if>
<equals "${mat.projectName}"="seal">
<then>
When done so, I'm getting following ...
0
votes
2answers
105 views
Ant using antlib with namespace
I am using the following demonstration script:
<?xml version="1.0" encoding="UTF-8"?>
<project name="test" basedir="." xmlns:deploy="antlib:net.sf.antcontrib">
<target ...
2
votes
1answer
100 views
how to call multiple ant targets for foreach
here is what am trying to do, I want to replace name and address from my large number of property files during build, but unfortunately I cant do this, is there a better way of doing this without ...
0
votes
1answer
31 views
Where “if” task can be inserted?
I can see, that "if" tasks can be used in "target" root or anywhere, where some action is expected. But can I use it when I'm specifying some parameter?
For example there's ant-javafx task fx:deploy, ...
2
votes
3answers
200 views
Ant Contrib If for optional JAR META-INF
I have a scenario where I'm trying to reuse the same build.xml file across multiple projects. In each case, the finaly target is a dist that JARs everything up. The only difference is that some of the ...
0
votes
0answers
119 views
unstable behaviours of resourcecontains
I had some issues with the resourcecontains ant instruction in the 1.8.2 ant version.
According to the usage of resource or refid attribute, I got different results.
Actually, it seems to not have the ...
0
votes
2answers
135 views
Ant: How to check (programatically) if schemavalidate was successful or not
I would like to know if is possible to check/capture the result of a "schemavalidate"/"xmlvalidate" operation?
The idea is to parse the files in a folder, try to validate each of them against an XSD ...
2
votes
3answers
193 views
How to <foreach> in a <macrodef>?
I have a xml just like below:
<data>
<foo>value1</foo>
<foo>value2</foo>
<foo>value3</foo>
</data>
I want to create macrodef ...
1
vote
1answer
39 views
ANT- Loading Multiple Java files from Several packages
I have several files scattered across several packages. I need to load the file one by one and perform operations using ANT but whenever I try, only one file gets loaded. For ex. I have 2 classes - ...
0
votes
1answer
19 views
Ant identifiying the a line above the current line
So i can retrieve a certain line in a file. Now i want to check the values in the line just above this line. How do i go about doing this in ant?
0
votes
1answer
28 views
Append to the end of a line in an Ant Build File
So i have an ant build file which needs to modify this other file named modify.properties. In this properties file i have a line such as this -
...
0
votes
3answers
304 views
Ant-Contrib Equals Ignore Case
Is there a way to check if two values equal each other regardless of case? For instance "myValue" equals "myvalue" case-insensative.
<if>
<equals arg1="myValue" arg2="myvalue" />
...
2
votes
2answers
306 views
Stop ant script without failing build
In my ant script I want to exit (stop executing build) without failing when a condition is met. I have tried to use:
<if>
<equals arg1="${variable1}" arg2="${variable2}" />
...
0
votes
2answers
216 views
Could not load definitions from resource when using ant task
I'm using ant-contrib in my build script
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="ant/ant-contrib-0.6.jar"/>
...
2
votes
0answers
72 views
Propertyregex: escaping spaces in paths
I have a problem with escaping spaces with ant-contrib's propertyregex. The following works on windows:
<propertyregex property="env.ESCAPED_JOB_NAME" override="true"
input="${env.JOB_NAME}" ...
0
votes
1answer
104 views
ANT: Reg regexp for extracting contents between slashes in property regex
I have the following strings as input for scheduler file
Z:\cnt_development\cnt\test\Test-cases-blr\v80-WM\scheduler\FRQ\AUTO\sml-hr454\SRISM.xml
...
3
votes
0answers
55 views
How to use cpp-tasks in Ant build
I am using Ant 1.8.2 And I get this error:
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any ...
1
vote
1answer
88 views
ANT: Foreach not excluding files when target attrbute is used
I have a foreach tag to execute all the files within a particular directory. As part of the fileset I have excluded two files.
But irrespective of excluding the files, the param still passes the two ...
0
votes
0answers
210 views
TeamCity deploy to Tomcat with Ant fails
I'm running TeamCity 7 on Ubuntu 12, and I'm trying to deploy a war file to a tomcat server on machine with IP x using Ant.
The thing is - this worked on a different machine with TeamCity 7, and the ...
0
votes
2answers
47 views
Ant: All Directory under Current Directory
I am trying to figure out all the directory under my current directory. Current directory may contain files and directories.
In this scenario, I am looking for existing task which can provide me all ...
0
votes
0answers
88 views
Use ant-contrib,how to use “endsWith”?
the ant-contrib lastest version is ant-contrib-1.0b3.jar?
http://ant-contrib.sourceforge.net/tasks/tasks/more_conditions.html
this document show endsWith condition
But I use ant 1.8.2 And ...
1
vote
3answers
156 views
In Ant, how can Itest if a property ends with a given value?
In Ant, how can Itest if a property ends with a given value?
For example
<property name="destdir"
value="D:\FeiLong Soft\Essential\Development\repository\org\springframework\spring-beans" ...
5
votes
2answers
214 views
ANT remove blank spaces regexp
I want to get the .doc file name and save it in the next property (pdf.name). Using regexp I want to remove all the blank spaces in the .doc file name and transform it from this:
NAME FILE.doc
To ...
0
votes
2answers
306 views
ant and greater than
I was trying to follow this stackoverflow link:
initially , I started looking for a way to do greaterthan in ant and I found few ways which all caused problems to me.
I found a way, to do it by ...
1
vote
1answer
43 views
Execute jar command only on files that were modified
So I'm using Yuicompressor to minify my javascripts/css on my ant script. This process takes a long time for my project. I'm wondering if there is any way to make it only execute on files that were ...
1
vote
2answers
169 views
Include ant modified selector based on condition
I am modifying my exiting ant script to support differential builds. For that I have used modified selector in fileset for finding only modified files. But the problem is when I am doing full build I ...
0
votes
1answer
45 views
How does namespace works in ant build file?
I'm trying to use ant-contrib and I notice sometime it is used specifying the ac: namespace and sometimes not.
When should I use the namespace and why?
0
votes
0answers
291 views
How to convert ant foreach to ant for loop
I have a folder structure like ${top.level.smoketest}/*/Smoke/TestLists
There are about 20 folders with varying names in the * part. Some folders do not have ./Smoke, some don't have ...
1
vote
1answer
122 views
mapping multiple ivy files in Eclipse
I'm currently changing my eclipse build paths with Ivy.
I also modified my ANT build successfully by having 2 Ivy files loaded that retrieve my dependencies:
In my portlet build file, I specifically ...
0
votes
2answers
48 views
Calling 2 ivy files sequentially
I'm trying to call 2 retrieves one after the other.
When my ivy_portlet.xml is present, the second call is not executed.
When my ivy_portlet.xml is not present the second call retrieves the content ...
-3
votes
1answer
340 views
Extract value from string using ant-contrib propertyregex [closed]
I am wondering if this is possible using propertyregex from ant-contrib. I have a git.revision number that looks like this:
1-2-g72dfbc5
I want to extract the second field from this string. This ...
0
votes
2answers
157 views
Ant: set property in 1 file, read it in another?
I have the following Ant buildfile importer.xml:
<project name="importer" basedir=".." default="build">
<import file="imported.xml"/>
<target name="build">
<!-- ...
0
votes
3answers
327 views
ant if target failing
I have an ant task which reads environment property from
myproject.properties. The environment property value is set to
prod and am displaying that "Prod condition is true". I see that
${environment} ...
0
votes
1answer
407 views
ant exclude directories in dirset
I am running a foreach loop over all directories that are below a root directory.
I want to exclude all directories with the name "src" and "bin".
How can i exclude those directories from the ...
0
votes
1answer
60 views
Ant-Contrib content assist in eclipse
I am working with some ANT build scripts in eclipse.
I have just recently installed eclipse 4.2.
When i was using an older version of eclipse the content assist for ANT-contrib stuff was working. ...
