Java Mailing List Archive

http://www.ant-tasks.com/

Apache Ant Archive

» Ant Users List
» Ant Developers List
  Subjects
Home
Python implementation for Ant
AW: a problem compiling a Java 5 project with generics
Odd Behavior
How to compile jsp files with ANT
Ant and the Windows Registry
please update the next release of Ant 1 7 to Xerces 2 9 0
tag inside some other tag(cvs)
Perform a task for every folder from the file
ConcurrentModificationException
Location attribute in property not resolving correctly
creating files
Problem with condition selection property; Help needed
Javac task query
Help with running different target based on user input?
"java lang ClassCastException: org apache tools ant types Path " error after
ANT task to process properties files into static class
Ant 1 7 0 can 't find Junit in ${user home}/ ant/lib
Invoking a target (Ant 1 7) in a loop (Ant Contrib)
How to set the next week start date
repost: trooubled with ant from source install
Javadoc
ant javac version question
TImestamping in ANT
Building Dependent targets
help! how to send multiple files to remote machine? ant jsch
Ant 1 7 0Beta3 released
Example: error loading a mysqldump file
How to refer PATH environment variable in <exec > Ant task
How do I use ejbDeploy outside of RAD
Build successful but nothing produced
Formatter for ant scripts ?
Rename directories in Ant
How to make "outputproperty " element work???
Jar Locking
Can 't get env HOSTNAME
AntForm question
filelist/fileset with multiple directory
"java lang ClassNotFoundException " when running junit task
Settting environment variables
Mail failing in build xml file
Custom processor for Xslt task?
How to echo path?
I need to write a task for Tagging
How can I capture a file 's date to a property?
task to 'cp r reply=no '
containsregex and concat
Weird Deleting Problems
ant and eclipse?
while like structure in Ant
Accessing the manifest within a jar file
get filename
Create WEB INF/lib based on path structure
Conditional dependencies
replaceregex
Very Bad use of Ant
regex text out of a file
ANT Help
at my wits end with delete
Task help
install and use apache ant on linux
Page 105 of 343 Previous 100   Previous 10   101   102   103   104   105   106   107   108   109   110   Next 10   Next 100  

AW: Improving the manual

Good to hear some suggestions from another point of view -) >The big problem with the Ant manual is the people who wrote it >knew too much. I can see various ways to make it more >intelligible to t

Junit issue....

I 'm using Ant 1.6.0 and when using the junit task in my script it 's giving me the message that it can 't find the task...you may have misspelled 'junit '...try this..blah blah blah... "Could not create

Improving the manual

The big problem with the Ant manual is the people who wrote it knew too much. I can see various ways to make it more intelligible to the first timer 1. define a term like project or target the fir

reporting compile failures at the end of an ant task

Is there a way to make ant report compilation errors? I 've noticed that the BUILD SUCCESSFUL will still display even when some on my java classes don 't compile. Ant will display the javac error messag

Test for empty folder?

Hi How do can test if a folder is empty? Mike

Calling ANT from a Servlet

Hello situation I want use ANT from a Java WebApplication. I have a ANT build file with some targets and tasks. (cvs task cvschangelog task xslt task) und want run this build file within a servle

AW: Search Task in ANT

<replaceregexp > ? Jan >-----Urspr?ngliche Nachricht----- >Von KrustyDerClown [mailto KrustyDerClown@(protected)] >Gesendet Mittwoch 27. Juli 2005 13 53 >An user@(protected) >Betreff Search Task i

Strange <move > behaviour ?!

Hi in my script i have defined two filesets like that <!-- files and folder -- > <fileset id "jarsfolder " dir "./temp/dist/lib/ZAD " includes "**/* "/ > <!-- i want only jars in here -- > <fileset id

Search Task in ANT

Hello i search an ANT Task for search in a file and write (if the search find a spezial term) a notice in a file. Provide ANT for this work any simple task or must i use the replace task ? Thank y

Hard relative pathname problem

All If this is even possible... Can someone provide a hint how to define a pathname not in the ancestral tree of the base dir? My build file is located here C \top\A\B\build.xml and I need to

New article on Ant and BeanShell

Hi Folks I have self-published an article on using Ant tasks from BeanShell scripts titled "Supercharging BeanShell with Ant " at http //www.pankaj-k.net/spubs/articles/supercharging_beanshell_with_

Scope of property.

Hello guys i noticed a strange behaviour i never came accross before <target name "target1 " > <property file "target1.properties "/ > </target > <target name "target2 " depends "target1 "/ > the probl

Build resources...

Hi Could anyone recoment any good books or online resources on 'build and release management ' .?. Thanks Fintan Fintan Hynes Traventec Galway Business Park Dangan Galway Irel

scp problem: received directory without -r

Hi I have a build file to update a website from my own pc using <scp > task. It was working perfectly until more than a week ago. I now have an error message when it tries to upload a file in a subd

Creating two same-type subelements with different names

sorry i realized i posted this under a copied message subject which made no sense..... so here goes again. Howdy I have my own task that requires two FileSet sub-elements. In order to differentia

Outputproperty in sshexec

I have an ssh task which executes a remote start command and I am trying to get the exit status using outputproperty. However I notice that the outputproperty value is not being set. Any Idea 's? here

Is it possible to print the DAG created internally by Ant ????

Hi almost all contemporary build tools analyze the dependencies on their own and generated the directed acyclic graph. is it possibile to print that one on output ? it can be useful in analyzing

Zipfileset problem. Help!

Hi I 'm trying to create a zip file of a parent folder with many subfolders with many different file types in each subfolder. However I 'm only interested in the *.rdl files in each subfolder and o

AW: <fail > silently

Just my few cents Define the "check " logic in a <macrodef >. - if the check passes set a property - property name is provided as <attribute > Define three new check-targets ProductA.check ProductB.

<fail > silently

I 've got a script that contains a number of build commands for various products e.g. ant check build ProductA ant check build ProductB ant check build ProductC What I want to do is run "check " for e

AW: wait for background thread

I would use a file as semaphore - the background thread creates a file as last instruction - Ant uses <waitfor > <available file " "/ > for synchronizing Jan >-----Urspr?ngliche Nachricht----- >Von Pa

wait for background thread

Hello Writing an task I want to run some stuff in a background thread and I need ant to wait until the background thread is done before exiting. I thought I would take example on the ant-contrib fo

AW: javac compilation speed

ANT does no dependency checks but <javac > does -) The dep-checks are things the tasks should do. But because Ant cant know what the task will create it cant do the dep-check. Think about code gene

javac compilation speed

I have read that ant does not do dependency checking to see if targets are up to date. But I have also read that compilation of java files is faster with ant. How is this possible? Does ant use jav

yet another problem with windows and '\ '

Hi if someone else runs into that ... i just had another unpleasant experience with windows pathdelimiter ' \ ' in ant (usually i always write / instead of \ but in that special case) I 've set

Runing subant depending on the sub projects names.: or selectors

hmm or <contains > selector in a fileset.But i don 't find it very elegant. Any other ideas? -----Original Message----- From Jan.Materne@(protected) [mailto Jan.Materne@(protected)] Sent Tue 7

AW: Runing subant depending on the sub projects names.

Can?t you specify subants fileset according to your needs? Jan >-----Urspr?ngliche Nachricht----- >Von hind.lwahhabi@(protected) [mailto hind.lwahhabi@(protected)] >Gesendet Dienstag 26. Juli

Runing subant depending on the sub projects names.

Hello folks Is there an elegant way to call <subant > on subprojects using the name of each subproject? I mean from the root build file execute subprojects build files of subproject A B C but not

AW: creating -projecthelp default help target

Have a look at http //issues.apache.org/bugzilla/show_bug.cgi?id941 Jan >-----Urspr?ngliche Nachricht----- >Von Ivan Ivanov [mailto rambiusparkisanius@(protected)] >Gesendet Dienstag 26. Juli 2005

creating -projecthelp default help target

Hi I 'm trying to get ant help to printout a small message and then the ant -projecthelp listing but I keep getting the following error C \Documents and Settings\jdewey\Desktop\zz\build.xml 11 Exec
Page 105 of 343 Previous 100   Previous 10   101   102   103   104   105   106   107   108   109   110   Next 10   Next 100  
   
©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.