Okay, the 'Omit_Optional_Partx' stuff works okay now that each of those
targets are in the 'buildall'. Ant apparently considers running them but
only actually executes the ones that should run, based on whether their
checkbox was selected in the AntForm.
However, there is still one BIG problem
Hello,
Indeed, if your 'Omit_Optional_Partx' targets are not part of any
depends attribute, they will not get called.
You should probably have something like:
...
...
...
...
...
Rgds,
Patrick
On Thu, Feb 25, 2010 at 6:43 PM, Rhino wrote:
> Thank you, Patrick, for your helpful sugg
Hello,
You probably want to use a booleanProperty instead of a checkSelectionProperty.
The checkSelectionProperty allows to select multiple values (you use
it only for one). It always set the property (even if empty), so your
statements will get executed as they test the property
existence and n
I was reasonably comfortable with Ant a few years ago but haven't
touched it in quite a while so I need a bit of a refresher. I've tried
looking in the manua but it always seems to answer only part of the
question so I thought I'd try here.
Among the things that my Ant script needs to do is wr
Sent: 01 September 2009 19:59
> To: Ant Users List
> Subject: Re: Yet another basic question about Ant
>
> It is for a Java program. But I have to convert all the Make utilities
> into
> Ant.
> I dont know Make. and I have to eliminate the Make
>
> On Tue, Sep 1, 20
Send me your make file plus any extras. I'll have a look 4 you.
chris.green...@gmail.com
-Original Message-
From: veena pandit
Sent: 01 September 2009 19:59
To: Ant Users List
Subject: Re: Yet another basic question about Ant
It is for a Java program. But I have to convert al
It is for a Java program. But I have to convert all the Make utilities into
Ant.
I dont know Make. and I have to eliminate the Make
On Tue, Sep 1, 2009 at 2:50 PM, David Weintraub wrote:
> Ant is a build system primarily designed for Java builds while Make is
> primarily designed for C/C++ bui
Ant is a build system primarily designed for Java builds while Make is
primarily designed for C/C++ builds.
Are you doing a Java build, but for some reason, it was originally written
in Make? Then, I can understand why you want to change. But you are probably
better off writing the build from scra
On Tue, Sep 1, 2009 at 10:20 AM, veena pandit wrote:
> I have been given the task of converting Make files to Ant. I don't know
> Make and I don't know Ant.
> But I am going to try. There are 3 make files in the project. The first
> one includes another make file
> like so:
> include makefile.${
Hi,
I have been given the task of converting Make files to Ant. I don't know
Make and I don't know Ant.
But I am going to try. There are 3 make files in the project. The first
one includes another make file
like so:
include makefile.${OSTYPE}${OS}
the other Make files are makefile.linux and ma
b...@huk-coburg.de> wrote:
>
>
> -Original Message-
> From: veena pandit [mailto:v.kri...@gmail.com]
> Sent: Tuesday, September 01, 2009 12:47 AM
> To: Ant Users List
> Subject: Re: Basic question about ant
>
> /*
> Since wsgen is in a jar file, I put the complete
-Original Message-
From: veena pandit [mailto:v.kri...@gmail.com]
Sent: Tuesday, September 01, 2009 12:47 AM
To: Ant Users List
Subject: Re: Basic question about ant
/*
Since wsgen is in a jar file, I put the complete path of the jar file in
the exec.
So if anttasks.jar was in C
x27;information seulement et n'aura pas n'importe
quel effet légalement obligatoire. Étant donné que les email peuvent facilement
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité
pour le contenu fourni.
> Date: Mon, 31 Aug 2009 18:47:02 -0400
>
Since wsgen is in a jar file, I put the complete path of the jar file in
the exec.
So if anttasks.jar was in C:/eclipse/plugins/anttasks.jar then my exec looks
like this:
On Mon, Aug 31, 2009 at 1:01 PM, Gilbert Rebhan wrote:
> veena pandit schrieb:
> > Hi,
> >
> > I was able to fix the envir
veena pandit schrieb:
> Hi,
>
> I was able to fix the environment variable and run ant from the command
> line. I tried the things you listed below but from eclipse it still gives
> me an error saying it does not recognize the program wsgen.
>
did you try the absolute path, f.e.
...
...
??
Hi,
I was able to fix the environment variable and run ant from the command
line. I tried the things you listed below but from eclipse it still gives
me an error saying it does not recognize the program wsgen.
Thanks,
Veena
On Fri, Aug 28, 2009 at 5:12 PM, Gilbert Rebhan wrote:
> veena pandit
I put a note in the manual.
rev 809463
Jan
> -Ursprüngliche Nachricht-
> Von: Gilbert Rebhan [mailto:a...@schillbaer.de]
> Gesendet: Freitag, 28. August 2009 23:12
> An: Ant Users List
> Betreff: Re: Basic question about ant
>
> veena pandit schrieb:
> > Wel
veena pandit schrieb:
> Well, I wonder why I cant run ant from the command line. Even though the
> path is set.
> Do I have to set classpath as well?
i assume your're on windows ..
ant installation in general =
set ANT_HOME=path/to/root/of/your/antinstalldirectory
set PATH=%PATH%;%ANT_HOME%/b
Well, I wonder why I cant run ant from the command line. Even though the
path is set.
Do I have to set classpath as well?
On Fri, Aug 28, 2009 at 3:32 PM, Dominique Devienne wrote:
> On Fri, Aug 28, 2009 at 2:00 PM, veena pandit wrote:
> > I added it to the environment variable of path; i stil
On Fri, Aug 28, 2009 at 2:00 PM, veena pandit wrote:
> I added it to the environment variable of path; i still cant run ant from
> the command line. I am getting this error
> while running it from eclipse.
>
> What am I doing wrong?
Sorry, I'm not an IDE user, I can't help you there. --DD
-
Hi,
I added it to the environment variable of path; i still cant run ant from
the command line. I am getting this error
while running it from eclipse.
What am I doing wrong?
Thanks in advance,
Veena
On Fri, Aug 28, 2009 at 2:45 PM, Dominique Devienne wrote:
> On Fri, Aug 28, 2009 at 12:53 P
On Fri, Aug 28, 2009 at 12:53 PM, veena pandit wrote:
>
> path specified.
This means wsgen in not in your path. If you can't run it at the command line,
you can't run it inside Ant.
Note that it's also best to use and rather than
a single , as will convert them to absolute filenames
Hi,
I am a newbie to Ant.
I got the following from a tutorial and tried to add it to my existing
project:
Oh, I didnt know that. Thank you for correcting me !
And sorry for my misleading posts...
Then, what may be his problem's cause ?
(Upgrading to Eclipse 3 may of course be of some help)
Olivier
--
CROISIER Olivier
Software Engineer
Thales IS - ANS
[EMAIL PROTECTED]
--
yep: the shortest project should be
:-)
Jan
> -Ursprüngliche Nachricht-
> Von: Peter Reilly [mailto:[EMAIL PROTECTED]
> Gesendet am: Dienstag, 7. September 2004 15:40
> An: Ant Users List
> Betreff: Re: Basic Question
>
> Olivier Croisier wrote:
>
>
target "none" ...
Jan
-Ursprüngliche Nachricht-
Von: Rajesh [mailto:[EMAIL PROTECTED]
Gesendet am: Montag, 6. September 2004 21:29
An: 'Ant Users List'
Betreff: RE: Basic Question
Hai Rhino ,
Can you please provide your ant code pls
Rajes
_
From: Rhino [mailto:[EMA
26 matches
Mail list logo