Re: too many errors

2001-04-09 Thread Stefan Bodewig
<[EMAIL PROTECTED]> wrote: >> Try ant -help.. It's very useful... > > Thats true, but not for me, I had the document files open when I was > trying to find the solution and the documents dont have it listed > under command line arguements (i assumed that was the only command > line arguements av

Re: "experimental" task in group build file - how to?

2001-04-09 Thread Stefan Bodewig
Kai Bartels <[EMAIL PROTECTED]> wrote: > When I only insert the taskdef into the build file, the jar is not > required, but as soon as I insert a target that uses ajc, ant tries > to instantiate the AJC class while parsing the build file (I'm not > trying to _use_ the task at that point!). Ant >

Re: too many errors

2001-04-09 Thread Suboner
> Try ant -help.. It's very useful... Thats true, but not for me, I had the document files open when I was trying to find the solution and the documents dont have it listed under command line arguements (i assumed that was the only command line arguements available), plus I use batch files to

"experimental" task in group build file - how to?

2001-04-09 Thread Kai Bartels
Hi gurus! :^) I'd like to do the following but can't figure out how - any ideas? We have a build file for the current project that everyone working on this project uses, so changes on that file affect all of us. Now I'd like to "play" with aspectj locally but also would like to use the build fil

Re: questions about

2001-04-09 Thread Stefan Bodewig
Nico Seessle <[EMAIL PROTECTED]> wrote: > No, I can just suggest the "right" way to do that :-) > > > > > > is only meant to read "static" definitions > from the property file. > But ${} constructs will be expanded there as well, so should work as well. Stefan

Re: package puzzle

2001-04-09 Thread Stefan Bodewig
Ian Macey <[EMAIL PROTECTED]> wrote: > Am obviously missing something here... Yep, you are missing . 8-) Your source has to be in Prj/x/ (and your incl

RE: LinkageError Problems

2001-04-09 Thread Stephane Bailliez
As its name suggests, it is a security violation on the classloader meaning that you are loading twice org.w3c.dom.* classes in different classloaders (ie the system classloader and AntClassLoader in this case) and try to instantiate them. This is to avoid some malicious coder to replace classes

LinkageError Problems

2001-04-09 Thread Stephen Champeau
A few days ago I sent a message describing a problem I had compiling some classes that use XML under Ant 1.3. I received a response suggesting I try using includeAntRuntime = "no" in my task. This solved my compile problems, but I'm having trouble running my custom tasks that use XML. I define a

Re: First Time User Questions

2001-04-09 Thread Steven_Shaw
AFAIK you have made an incorrect assessment. Ant is not designed to work well with non-Java sources. Ant will not automatically generated dependencies between .cpp sources and .h files. I have been thinking about moving from standard make to a new make system for a large C/C++ project. Under con

Re: questions about

2001-04-09 Thread Nico Seessle
- Original Message - From: "Son of Mojo JoJo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 10, 2001 12:41 AM Subject: questions about > essentially, id like to set an environment variable and a few variables based on > this > > heres what i have in the file: > > envi

questions about

2001-04-09 Thread Son of Mojo JoJo
i've tried to use the function to include a set of global properties into my nat build structure the problem im facing si that it does not seem to read in the properties from this file what format should the file be in for this to work? essentially, id like to set an environment variable and

Re: too many errors

2001-04-09 Thread Kevin Cummings
Try ant -help.. It's very useful... -- Kevin At 05:39 PM 4/9/2001 -0400, you wrote: >BTW Im not sure if that "-logfile" command line arguement was documented, I >myself kept searching through the documentation for something like it and >couldnt find it, maybe I am blind, but if it is not in the

Re: too many errors

2001-04-09 Thread Suboner
BTW Im not sure if that "-logfile" command line arguement was documented, I myself kept searching through the documentation for something like it and couldnt find it, maybe I am blind, but if it is not in the documents, they should really place it in there, it is really important if a lot of er

Re: too many errors

2001-04-09 Thread Suboner
I log the results... ant -logfile=log.txt Then you can load the log file and view it in what ever text editor you prefer. Leyland Needham

Re: too many errors

2001-04-09 Thread Nico Seessle
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 09, 2001 8:20 PM Subject: too many errors > Through ant, how do you see more than 100 errors when compiling? Right now > I get too many errors, (The limit on reporting errors is 100). Thank you >

too many errors

2001-04-09 Thread Scott_Carter
Through ant, how do you see more than 100 errors when compiling? Right now I get too many errors, (The limit on reporting errors is 100). Thank you for any help

RE: filter task problem

2001-04-09 Thread Bill Lynch
Ahh good catch. I fixed the typo, but the problem still occurs. Any other ideas? Thanks, --Bill > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Glenn McAllister > Sent: Monday, April 09, 2001 11:52 AM > To: [EMAIL PROTECTED] > Subject: Re: filter

Re: filter task problem

2001-04-09 Thread Glenn McAllister
Bill Lynch wrote: > # skin_tokens.properties > page.tile=This is the title... typo? You have page.tile in your properties file, but page.title in your JSP file. Glenn

RE: Using ant with bcj

2001-04-09 Thread Jay Glanville
Title: RE: Using ant with bcj There are two options: 1. use the task. 2. write a compiler adapter to interface for bcj.  To do this, have a look at the documentation for (which will act as the proxy for your CompilerAdapter.  The documentation for javac: http://jakarta.apache.org/ant/man

filter task problem

2001-04-09 Thread Bill Lynch
All, I'm using Ant 1.2. I'm running into a problem with filter task. I have a simple task to copy some JSP and HTML pages around: My skin_tokens.properties looks like: # skin_tokens.properties page.tile=This is the title... In one of my JSP pages (included

RE: First Time User Questions

2001-04-09 Thread Steve Grist
Dear jakarta: I am a new user of the Ant tool. I have been tasked with moving our nmake files which support only c++ on WIndows to platform independent tool which also supports java and Linux. I have determined that ANT is a reasonable tool for the job. Is my assessmet correct? If so, do yo

Out of memory Error with Delete

2001-04-09 Thread twm139
I am getting an out of memory error with delete and move on ant 1.2 (this one happens to come with Iplanet 6.0). Is this a known issue? Is it fixed in a later version? Cheers, Terrence

RE: package puzzle

2001-04-09 Thread Ozzy Espaillat
Prj -Original Message- From: Macey, Ian [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 8:45 AM To: '[EMAIL PROTECTED]' Subject: RE: package puzzle > -Original Message- > From: Ozzy Espaillat [mailto:[EMAIL PROTECTED]] > Sent: 09 April 2001 16:13 > To: [EMAIL PROTECTED

RE: package puzzle

2001-04-09 Thread Macey, Ian
> -Original Message- > From: Ozzy Espaillat [mailto:[EMAIL PROTECTED]] > Sent: 09 April 2001 16:13 > To: [EMAIL PROTECTED] > Subject: RE: package puzzle > > > Ant does a simple mapping from source to destination dir. It sees > Prj/Prj.java and expects to see Prj/classes/Prj.class which

Re: First Time User Questions

2001-04-09 Thread Paul Sanford Friedman
Here is an extremly useful basic build.xml taken from Developing Applications using Tomcat (http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/appdev/index.html). On this site there is also a section on building a batch/script file for your builds. - Original Message - From: "Steve G

RE: Logging output to a file...

2001-04-09 Thread Shaikh, Mehmood
Try ant -buildfile ABCD_Build.xml -logfile dd.log -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: April 6, 2001 9:08 PM To: [EMAIL PROTECTED] Subject: Logging output to a file... How do I log out put to a file? In windows dos box, it goes by to fast and th

First Time User Questions

2001-04-09 Thread Steve Grist
Dear jakarta: I am a new user of the Ant tool. I have been tasked with moving our nmake files which support only c++ on WIndows to platform independent tool which also supports java and Linux. I have determined that ANT is a reasonable tool for the job. Is my assessmet correct? If so, do yo

RE: package puzzle

2001-04-09 Thread Ozzy Espaillat
Ant does a simple mapping from source to destination dir. It sees Prj/Prj.java and expects to see Prj/classes/Prj.class which does not exists when you specify a package. When you add Prj.java to package x the source file should be in Prj/x/Prj.java and not Prj/Prj.java. Ant (actually I think it's

wrong typin

2001-04-09 Thread Pinar Bicioglu
I meant JDK1.3 not JDK1.4 sorry about that ... -Original Message- From: Pinar Bicioglu [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 11:04 AM To: '[EMAIL PROTECTED]' Subject: JDK1.2.2/JDK1.4 and JDK1.1.8 Hi, Is it possible to use different JDKs (for oen target JDK1.2.2/JDK1.4

JDK1.2.2/JDK1.4 and JDK1.1.8

2001-04-09 Thread Pinar Bicioglu
Hi, Is it possible to use different JDKs (for oen target JDK1.2.2/JDK1.4 and for the other JDK1.1.8) for different targets in build.xml file. ? Thanks

RE: package puzzle

2001-04-09 Thread Macey, Ian
> -Original Message- > From: Diane Holt [mailto:[EMAIL PROTECTED]] > Sent: 09 April 2001 15:16 > To: [EMAIL PROTECTED] > Subject: Re: package puzzle > > > You'll most likely need to respecify the "srcdir" and, if > you're including > specific files, the path to where those files are f

Using ant with bcj

2001-04-09 Thread Harald Hett
Hello! I am new to this list, so I apologize if my question is one of the top 10: Is it possible to use the Borland compiler bcj with Ant and if "yes", how? Thanks in advance -- Harald Hett <[EMAIL PROTECTED]>

RE: PVCS task

2001-04-09 Thread Dinwiddie, George
Yes, but it doesn't work with 6.5.00 on NT: D:\javacode\AntTest>pcli lvf -z -aw anything.java PVCS Version Manager (VMGUI) v6.5.00 (Build 536) for Windows NT/80x86 Copyright 1985-1999 INTERSOLV, Inc. All rights reserved. This command is provided for customer support purposes. The interface is s

Appending lines to .properties

2001-04-09 Thread graste
Hi, I'm rather new to ant, but searched the archive for a solution without finding something that helps me. I'm trying to add some lines to an existing properties-file using the task. Although I used several ways and append="true", I can't get it to work the way I want it to be done. My try:

Re: package puzzle

2001-04-09 Thread Diane Holt
You'll most likely need to respecify the "srcdir" and, if you're including specific files, the path to where those files are found. Specify "srcdir" up to the point where the package structure begins and included files beginning at com. Diane --- "Macey, Ian" <[EMAIL PROTECTED]> wrote: > > Am

Login problem !

2001-04-09 Thread Bihari Bela
Hi I am making a user managment system for a project. The problem i am facing is that first how can i make a system in which every page should be authenticated by server. And when user sign out then how to delte enteries from browser's back and forward buttons. Currently i am using cookies

package puzzle

2001-04-09 Thread Macey, Ian
Am confused... I have a project which I've been building with Ant for some time. The classes have been at the default package level. Have just changed my classes to be in a named package. The still project builds correctly, but it *always* compiles, even when it is up to date! Can return my p

Have I figured out how properties work?

2001-04-09 Thread Brian Murray
I would appreciate it if someone could correct or validate my understanding of how properties work: In a nutshell, a property, once set, cannot be changed. I thought there was a concept of "user properties", which couldn't be changed, and "non-user properties" which could be changed. However,

non-execute mode

2001-04-09 Thread Steve Buroff
Does ant have the equivalent of make -n? That is, a way to get it to list the commands it would execute but not actually execute them? I find this very useful for debugging make (build) files.   Steve Buroff

Re: Chicken and the Egg

2001-04-09 Thread Stefan Bodewig
David Corbin <[EMAIL PROTECTED]> wrote: > I like to have the build system verify (and "install" if necessary) > that various third-party librarys are available. I have one > particular build.xml that does this. One of these third-party > libraries is junit. The main build.xml uses the junit ta

Re: build.xml

2001-04-09 Thread Dmitri Colebatch
It basically sets the values of those properties for use later. For example, the line: sets the value of tracer.home, which is then used in setting the property of tracer.classbindir: hope this helps cheers dim On Sun, 8 Apr 2001 16:41, you wrote: > BlankHello: > Anybody can tell me

RE: build.xml

2001-04-09 Thread Stephane Bailliez
I'm sorry, I don't understand. What do you want to know exactly ? -- Stéphane Bailliez Software Engineer, Paris - France iMediation - http://www.imediation.com Disclaimer: All the opinions expressed above are mine and not those from my company. -Original Message- From: Andy La

build.xml

2001-04-09 Thread Andy Lau
Title: Blank Hello:     Anybody can tell me the means of the fellowed script?                                               Thanks!