Re: How can I exclude a directory's contents but not the directory itself?

2010-02-01 Thread Stefan Bodewig
On 2010-02-01, Jonathan Gordon wrote: > Perhaps I wasn't clear enough. At the bottom of my original mail I > included the following ant snippet, which is NOT correct for my > particular situation: > > > > > > >

Re: Subversion and ANT

2010-02-01 Thread Wascally Wabbit
Knuplesch, Juergen wrote: Hello, Where do I find a subversion ANT Task to download? I looked at http://ant.apache.org/antlibs/proper.html But I do not find the download for Subversion Task jar. Greetings Juergen You can also try the Svn4Ant project @ http://jwaresoftware.org/wiki/svn4ant

RE: Ant build that compiles and enhances in same build fails to find enhanceable classes

2010-02-01 Thread KARR, DAVID (ATTCINW)
> -Original Message- > From: Stefan Bodewig [mailto:bode...@apache.org] > Sent: Monday, February 01, 2010 3:16 AM > To: user@ant.apache.org > Subject: Re: Ant build that compiles and enhances in same build fails > to find enhanceable classes > > On 2010-01-31, KARR, DAVID (ATTCINW) wrote:

Re: How can I exclude a directory's contents but not the directory itself?

2010-02-01 Thread Jonathan Gordon
Perhaps I wasn't clear enough. At the bottom of my original mail I included the following ant snippet, which is NOT correct for my particular situation: While that's excluding the directory contents, it's also

Re: How can I exclude a directory's contents but not the directory itself?

2010-02-01 Thread chris . green100
I think your question includes the answer. It's the exclude parameter. Chris --Original Message-- From: Jonathan Gordon To: user@ant.apache.org ReplyTo: Ant Users List Subject: How can I exclude a directory's contents but not the directory itself? Sent: 1 Feb 2010 20:53 I have a directory

How can I exclude a directory's contents but not the directory itself?

2010-02-01 Thread Jonathan Gordon
I have a directory structure that looks like so: apache-tomcat-6.0.20/ |-- LICENSE |-- NOTICE |-- ... |-- bin | |-- bootstrap.jar | |-- ... |-- conf |-- lib |-- logs | |-- catalina.2010-01-13.log | |-- ... |-- temp |-- webapps `-- work |-- Catalina Using the sync command, I would like

Re: Subversion and ANT

2010-02-01 Thread Stefan Bodewig
On 2010-02-01, wrote: > I am not sure that we have released a version of that antlib... we haven't - and that's for a reason. Development on this antlib has stalled a long time ago and there are (better?) alternatives out there. svnant seems to be the m

AW: Subversion and ANT

2010-02-01 Thread Jan.Materne
I am not sure that we have released a version of that antlib... Jan > -Ursprüngliche Nachricht- > Von: Knuplesch, Juergen [mailto:juergen.knuple...@icongmbh.de] > Gesendet: Montag, 1. Februar 2010 14:11 > An: Ant Users List > Betreff: Subversion and ANT > > Hello, > > Where do I find

Subversion and ANT

2010-02-01 Thread Knuplesch, Juergen
Hello, Where do I find a subversion ANT Task to download? I looked at http://ant.apache.org/antlibs/proper.html But I do not find the download for Subversion Task jar. Greetings Juergen -- Jürgen Knupleschwww.icongmbh.de icon Systemhaus GmbHTel. +49 711 806

RE: How to stop receiving postings but stay subscribed? Web only

2010-02-01 Thread Ben Stover
Sad but true. Fortunately Apache software is better that their mailing-list admins Ben On Wed, 27 Jan 2010 12:14:26 +0100, remi.clav...@orange-ftgroup.com wrote: > or create a specific rules to push directly mails from Ant Users List to > trash... >-Message d'origine- >De : Peter Re

AW: javadocs of specific classes

2010-02-01 Thread Jan.Materne
> 1. I have a project in which the directory structure is as follows > > src/mpi > src/mpjdev > src/runtime > src/mpjbuf > > Now i want to generate the javadocs of src/mpi only. How can we do it? What > if i want that i want to exlude some files from the src/mpi p

Re: Ant build that compiles and enhances in same build fails to find enhanceable classes

2010-02-01 Thread Stefan Bodewig
On 2010-01-31, KARR, DAVID (ATTCINW) wrote: > I don't know if this is an Ant-specific problem, or an issue with the > OpenJPA PCEnhancerTask class. I don't have any experience with the later, so I can't really say. > I have an Ant build script whose "build" target has "compile, > enhance-classe

javadocs of specific classes

2010-02-01 Thread Kamran Hameed
Folks i have two questions 1. I have a project in which the directory structure is as follows src/mpi src/mpjdev src/runtime src/mpjbuf Now i want to generate the javadocs of src/mpi only. How can we do it? What if i want that i want to exlude some files from the

Re: fileset with exclude not working

2010-02-01 Thread Stefan Bodewig
On 2010-02-01, Kamran Hameed wrote: > Now there are two files Sum.java and Band.java in the mpi package that i > dont want javadoc tool to generate javadocs. So i try to exclude them using > > > > The trailing ** are not necessary if the files are real

fileset with exclude not working

2010-02-01 Thread Kamran Hameed
Folks i have this directory structure src/mpi/ src/xdev/ src/runtime src/mpjbuf Now i want ant's javadoc tool to generate javadocs of mpi package only. I did it successfully using Now there are two files Sum.java and Band.java in the mpi package that i dont want jav