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 313 of 343 Previous 100   Previous 10   311   312   313   314   315   316   317   318   319   320   Next 10  

CVS add with ANT

I need some help from experienced ANT people. Does anyone have a working example of using CVS add with ANT? I want to do the following 1. check out an archive (I can do this just fine) 2. create a

problem excluding files from JAR task

Searching the archives I 've seen some mention of similar problems (bugs) but I 'm not sure they apply to this situation Ant version 1.5.2 JDK 1.3 on Win2K I want to exclude all *.class files fro

propertyfile and time format

Does anyone know how to make #Build Information #Fri Mar 21 11 01 10 PST 2003 build.time 11\ 01 appear as #Build Information #Fri Mar 21 11 01 10 PST 2003 build.time 11 01 that is without escaping

Is <script > working in 1.6 nightly builds?

Hello <script > does not seem working in the nightly builds. Do I need to rebuild ANT from sources? - Alexey -- { http //trelony.cjb.net/ } Alexey N. Solofnenko Pleasant Hill CA (GMT-8 usually)

Retrieve property value dynamically?

All Can the following be accomplished using properties? I have tried several ways to do this but have been unsuccessful. Maybe there is a good reason this is not allowed? Or maybe someone can su

Passing a file list to ANT javac task

Hi Is there a way to pass a list of files to ANT 's 'javac ' task? I 'm after something that 's functionally similar to the command line "javac @(protected) ". The 'includesfile ' attribute of the 'javac ' ta

select dynamic folder name

I have a folder structure which was created dynamically like this main\folder1 \folder2 \folder3 Is there an Ant way to select the folder with suffix of highest numeric number in this case

ejbjar class not found exception

I am not sure how familiar you are Ant 1.5 and ejbjar. Below is what my ant target looks like. You will notice the ugly support tag. Let me explain. The entity beans in the application have a

SSH in ANT?!?! (WAS: RE: process on a remote server via an AN T ?????)

It is of course a lot better to use <sshexec/ > than <shellscript/ > for this. Also my example contained an error it should be <shellscript shell "sh " > <![CDATA[ ssh ${server} < <END cd /tmp ls

RE: SSH in ANT?!?! (WAS: RE: process on a remote server via an AN
   T ?????)

If you use the sshexec task you do not need to have an ssh client on your local machine. Obviously the remote machine needs to be running sshd. <sshexec host "somehost " username "dude " keyfile "${

alternate build mechanisms

Hello I am a brand new Ant user. I wish I could commit to one language to do all of my development but I have to follow many others in different projects. I would like to use one build fra

HELP WITH EJBC

Can someone help me with the ejbc task. Here is my problem. I am deploying on weblogic 5.1.0 as well as other versions and app servers. So... I create a generic jar containing my bean classes and h

AW: Order of targets without depends?

create a target for the whole project. <project default "all " > <target name "one " > ... </target > <target name "two " > ... </target > <target name "three " > ... </target > <target name "all " depends

Order of targets without depends?

Hello is it possible to set the order for the whole project in which targets should be executed without the attribute "depends "? For example <order name "target1 target3 target2 " / > I 've got th

SSH in ANT?!?! (WAS: RE: process on a remote server via an ANT ?????)

Or use <shellscript > in ant-contrib cvs head <property name "server " value "serv1 "/ > <shellscript shell "sh " > ssh ${server} ./script.sh </shellscript > Peter On Friday 21 March 2003 08 27 shaha

RE: SSH in ANT?!?! (WAS: RE: process on a remote server via an ANT
?????)

use <telnet > task. <telnet userid "userid " password "pwd " server "server " > <read >/users/userid </read > <write >./script.sh </write > <read string "/users/userid "/ > </telnet > this will require a

Does anyone have an example of CVS commit done with Ant?

Hi! Does anyone have an example of committing a file to CVS? I need to build a jar and then update CVS with the new jar file. It appears as though the task would go something like this <property

RE: SSH in ANT?!?! (WAS: RE: process on a remote server via an AN
   T ?????)

You can do multiple commands. For example setting command "cd /usr/local/bin rm -rf something tar zxf ~/something.tar.gz " would first cd to /usr/local/bin then delete the "something " directory

Adding new scripting languages to ant

Hello All I 'm currently writing a task that allows users to register new scripting languages with BSF for use via the script task in ant. This seems to have worked fine. However the 'ant api ' does

javadoc generation fails: ioexception create process

I know somebody has seen this before Any clues for me????? Thanks Ruel Loehr [javadoc] BUILD FAILED file F /finaleclipse/eclipse/workspace/AntBuild/build.xml 218 Javadoc failed java.io.IOExce

Newbie ant question

-----BEGIN PGP SIGNED MESSAGE----- Hash SHA1 I 've dug through the online docs but perhaps I missed the salient points. I 'm converting some Makefiles into ant. I used to have the rule dm-example.x

AW: SSH in ANT?!?! (WAS: RE: process on a remote server via an ANT ?????)

Hi Stefan I just tried both the SSH and SCP tasks with the nightly build from the 19th of March. The jsch.jar I tested it with had version 0.1.2 and was downloaded and built today. During both tasks

Jolt Reader 's Award

Steve and I 's book is up for a reader 's Jolt award http //www.sdmagazine.com/jolts/2002/readerpoll.html Also to be fair another Ant book (the O 'Reilly one) is up for the same award. Their book

RE: Access to Environment Variables other than ANT_HOME of CLASSP
    ATH

There are other ways - you can use <loadproperty > to load properties from a file. You can add -Dproperty value in ANT command. They work fine without hacking. - Alexey. -- { http //trelony.cjb.net/ }

Access to Environment Variables other than ANT_HOME of CLASSP ATH

Alexey On Thu 20 Mar 2003 09 10 you wrote > But <property environment > is not very useful because it is case sensitive > and many environment variables have different case on Windows and on Unix

Ant 1.5.2 Release API:Project/Target/Task

I 've recently downloaded Ant 1.5.2 and am using the following classes org.apache.tools.ant.Project / org.apache.tools.ant.Target / org.apache.tools.ant.Task My project tag would be as follows <proj

RE: Access to Environment Variables other than ANT_HOME of CLASSP
   ATH

But <property environment > is not very useful because it is case sensitive and many environment variables have different case on Windows and on Unix. - Alexey. -- { http //trelony.cjb.net/ } Alexey

Access to Environment Variables other than ANT_HOME of CLASSPATH

Can environment variables be accessed from within a build.xml file? The FAQs mentioned ANT_HOME and CLASSPATH but these seemed to only be used for the purposes of getting ant to run. TIA Best re

Ant1.52 javadoc problem

Hi I recently upgraded to ant1.52 from ant1.41 and all the javadoc scripts stopped working. This is a sample of a javadoc task i am using. <property name "src.dir " value "../src "/ > <javadoc sourc

Selector

I was running ANT 1.5.1 under jdk 1.3.1.Everything was working fine until I had to install jdk 1.4 in my machine.Now the same build file fails with the message even after reverting to jdk 1.3.1.I am n
Page 313 of 343 Previous 100   Previous 10   311   312   313   314   315   316   317   318   319   320   Next 10  
   
©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.