[antlist] How to install/configure JUnit task

2001-07-17 Thread T Master
Libraries page mentions: Library Dependencies The following libraries are needed in your lib/ext/ directory if you are using the indicated feature. However, to which tool is referred? Is it JDK or Ant? T Master

Re: [antlist] How to install/configure JUnit task

2001-07-17 Thread T Master
=${junit.classpath}/ /classpath /taskdef This is the error: unittests/example/build.xml [36] taskdef class junit.framework.TestCase cannot be found Has anyone out there defined their own task using taskdef ?? T Master - Original Message - Anyway, to use JUnit, I think you need

Re: [antlist] How to install/configure JUnit task

2001-07-17 Thread T Master
My workaround was not to use the property ${junit.classpath} within a taskdef, and instead hardcode the path. Apparently Ant cannot expand property names with taskdef's. However, using the same property within a javac call will work. Bug within Ant? - Original Message - From: T Master

Re: spaces and path definition

2001-07-17 Thread T Master
Used double quotes around the c:\Program Files? You should also use \\ instead of '\' in DOS paths. No excerpt was pasted so I ask. - Original Message - From: Shamberger, Michael [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 17, 2001 11:20 AM Subject: spaces and path

How to use a taskdef

2001-07-17 Thread T Master
Does anyone know how to use junit as a task as stated by the Ant 1.3 user manual? I can only get junit to work using java and passing argvalues. I've created a taskdef but get instanciation exceptions for the junit TestCase class. I also don't know which tool place my junit.jar file. The

Re: [antlist] How to install/configure JUnit task

2001-07-18 Thread T Master
the taskdef and stating the paths, with the result: build.xml [68] taskdef class org.apache.tools.ant.taskdef.optional.junit.JUnitTask cannot be found I'm either having problems because I'm a newbie, or I'm having bad day #2. T Master

Re: [antlist] How to install/configure JUnit task

2001-07-18 Thread T Master
now... - Original Message - From: Matt Lyon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 18, 2001 11:50 AM Subject: RE: [antlist] How to install/configure JUnit task T Master, You may need to feed your junit/ task a pathelement/ parameter to pick up the CLASSPATH

Re: preventing ant exit

2001-07-18 Thread T Master
That is similar to asking javac for keyboad input to quit after compiling. Workarounds: kill unnecessary processes on your box to allow more cpu time to ant; upgrade your box :-) If the user did press ente which target would be run then? The previous or the next in line? - Original

Re: [antlist] How to install/configure JUnit task

2001-07-18 Thread T Master
if junit.jar and optional.jar are under the ant_home/ib directory too. Everyone is free to help :-) T Master

Re: preventing ant exit

2001-07-18 Thread T Master
Troy, Nice cpu and ram you have there. Pity it's a dog runing something light as ant. Might wanna get a tune up ;) Curious though, what o/s do you have running? T Master - Original Message - From: [EMAIL PROTECTED] Gee, this is really getting way more complicated than it should be.

Re: [antlist] How to install/configure JUnit task

2001-07-18 Thread T Master
Erik, Running ant via command line using jdk1.2, the optional.jar tasks are being loaded. Even the junit.framework.TestCase loads ok. Until it attempts to use my build target which utilises the junit task. Are you using jdk1.2? Or jdk1.3? Anyone had a similar problem?? T Master Project

[antlist] error in ant.bat file ?

2001-07-19 Thread T Master
-Xprint help on non-standard options C:\dev\code However, removing the quotes, allows ant to work. Is this a problem with configuration of my paths? T Master

Re: [antlist] How to install/configure JUnit task

2001-07-19 Thread T Master
appreciated. T Master ant's command line used C:\dev\codeant.bat -verbose -debug C:\dev\jdk1.2.2\bin\java -classpath C:\dev\jdk1.2.2\lib\tools.jar;C:\dev\ant\ \lib\parser.jar;C:\dev\ant\\lib\optional.jar;C:\dev\ant\\lib\jaxp.jar; C:\d ev\ant\\lib\ant.jar;.;C:\dev\j2sdkee1.2.1\lib\j2ee.jar;C:\dev

Re: [antlist] How to install/configure JUnit task

2001-07-19 Thread T Master
loading it T Master

Re: Win 2000 Install/Exec

2001-07-23 Thread T Master
Just an idea. and something I tried before Use this line instead. it has the quotes removed. :runAnt echo %_JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home=%ANT_HOME% %ANT_OPTS% org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS% goto end That made ant work for me. - Original Message

Re: Win 2000 Install/Exec

2001-07-23 Thread T Master
I assisted Amos with the ant setup and configuration for win2000. He now gets the no buildfile specified error msg, i..e ant works. - Original Message - From: healey, alex [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 23, 2001 8:37 AM Subject: RE: Win 2000 Install/Exec

Re: javac, depend, and interface constants

2001-07-23 Thread T Master
Would HotSpot have any impact? - Original Message - From: Larry V. Streepy, Jr. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 23, 2001 12:03 PM Subject: Re: javac, depend, and interface constants Jason Pettiss wrote: Final constants are hardcoded directly in the

Re: javac, depend, and interface constants

2001-07-23 Thread T Master
, July 23, 2001 12:33 PM Subject: Re: javac, depend, and interface constants T Master wrote: Would HotSpot have any impact? Doubtful. Since JIT's work from the initial class files and then create native code for faster execution, I don't see how it could affect the dependency generation

[antlist] recursive file search

2001-07-24 Thread T Master
To confirm, pattern of **/*.java is used for recursive searching? Then, if recursion is not required, only /*.java is required? T Master

Re: [antlist] recursive file search

2001-07-24 Thread T Master
file search On Wed, 25 Jul 2001 01:26, T Master wrote: To confirm, pattern of **/*.java is used for recursive searching? yep ;) Then, if recursion is not required, only /*.java is required? *.java works ... /*.java will search for all java files in root of filesystem which

[antlist] VSS task

2001-07-24 Thread T Master
Does anyone have links, sample code, docs or other pertaining to the use of the VSS task? I'm interested in gets of latest code, labels, and commits. Thanks in advance.

[antlist] recursive file search

2001-07-25 Thread T Master
To confirm, pattern of **/*.java is used for recursive searching? Then, if recursion is not required, only /*.java is required? T Master

Re: [antlist] recursive file search

2001-07-25 Thread T Master
file search On Wed, 25 Jul 2001 01:26, T Master wrote: To confirm, pattern of **/*.java is used for recursive searching? yep ;) Then, if recursion is not required, only /*.java is required? *.java works ... /*.java will search for all java files in root of filesystem which

[antlist] delete and filesets

2001-07-25 Thread T Master
I want to delete only *.class files, so i have used the following code below. However, is it imperative I use the exclude name, to avoid deletion of source files? target name=cleanClasses delete verbose=true|false fileset include name=**/*.class / include

[antlist] passing command line argument to a task

2001-07-25 Thread T Master
How would I pass a command line argument to a task?

Re: JUnit task problems

2001-07-26 Thread T Master
you need optional.jar in the ant_home/lib directory. Get it from where you got ant. - Original Message - From: Trig Gullberg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 1:29 PM Subject: JUnit task problems Hello, I could use some help getting the junit task

[antlist] custom task - how to pass *.java filenames

2001-07-31 Thread T Master
[] of the actual *.java filenames? All comments appreciated, and thanks in advance. T Master

Re: [antlist] custom task - how to pass *.java filenames

2001-08-01 Thread T Master
though is the excludes. Am i meant to implement that? Or is that taken care of? To whom should i report back documentation improvements? T Master. - Original Message - From: Stefan Bodewig [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 11:24 PM Subject: Re

[antlist] property values and command line arguments

2001-08-01 Thread T Master
Target foo requires property value bar. Property bar is meant to be specified through the command line. However, I want to provide a default value in target init. Is this valid? Is there precendence of one over the other? Would the command line value overwrite the default as desired? T Master

if attribute

2001-08-01 Thread T Master
Regarding the if attribute, what defines the property being set? A non empty string? Or does mean set? Apologies for this sounding stupid. A good use of this is to sign a jar only if the sign properties are set. Smart eh? T Master

developing custom task - DirectoryScanner help needed

2001-08-07 Thread T Master
The saga continues... I have made my task to support usage of javancss. I do NOT extend from MatchedTask. However, I am having problems using DirectoryScanner. I am trying to obtain this from a fileset, as per code snippet from task delete. The method call to obtain the DirectoryScanner

path task error output

2001-08-07 Thread T Master
:\dev\ant\lib\optional.jar/ -- /path /classpath Ideas? I have optional.jar and everything installed in my classpath or in the ant/lib correctly. AFAIK. T Master OUTPUT === parsing buildfile C:\dev\build\javadoccing.xml with URI = file:C:/dev/build/javadoccing.xml Setting ro

Re: developing custom task - DirectoryScanner help needed

2001-08-08 Thread T Master
the latter doesn't. Is it possible to have a default.properties file in another directory or ${basedir} ? T Master - Original Message - From: Stefan Bodewig [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 07, 2001 11:45 PM Subject: Re: developing custom task - DirectoryScanner

classpath task not found error

2001-08-08 Thread T Master
/ include name=*.java/ /fileset /path The error message is below. Why can ant not find the classpath task? I copied the code from the user manual example. Using: ant1.3, win2k. T Master. OUTPUT: prompt:/cygdrive/c/dev/build/$ant.bat init Buildfile: build.xml init: BUILD

Re: javac destdir problem

2001-08-13 Thread T Master
support the nested fileset element My objective is to have a fileset for cleaning (works beautifully), and using same for jar'ing, and javac'ing. Cod re-use! T Master. - Original Message - From: Conor MacNeill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 10, 2001 11:50 PM

custom task problem... ARGHH!!

2001-08-14 Thread T Master
) at org.apache.tools.ant.Project.executeTargets(Project.java:510) at org.apache.tools.ant.module.run.TargetExecutor.run(TargetExecutor.java:263) at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:118) Thanks, T Master.

Re: Images become garbled when copying them from dir to dir

2001-08-15 Thread T Master
you are copying binary files using a text mode transfer so EOL's are being converted. Look at the copy ant documentation. - Original Message - From: Chris Flemetakis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 14, 2001 6:07 PM Subject: Images become garbled when copying

Re: loading classes in a custom task

2001-08-15 Thread T Master
); } public void execute() throws BuildException() { . . . // need to load class javancss.Javancss as it is not in our system classpath. javancss.Javancss ncss = new javancss.Javancss( cmdArgs, Main.S_RCS_HEADER); } } T Master.

JDependTask problem (ant1.4)

2001-08-16 Thread T Master
BUILD FAILED The jdepend task doesn't support the nested sourcepath element. Total time: 0 seconds $ Thanks, T Master.

ClearCase ccheckout task (ant1.4)

2001-08-17 Thread T Master
nowarn=true reserved=true comment=Test commentfile=commentfile branch=branchname out=output_filename / /target I don't use clearcase, so am unable to test. T Master. - Original Message - From: Anthony Rodriguez [EMAIL PROTECTED] To: [EMAIL

javadoc task userdoc error?

2001-08-17 Thread T Master
The ant manual states for javadoc: groups Separates packages on the overview page into whatever groups you specify, one group per table. This performs the same role as the group attribute. You can use either syntax (or both at once), but with the nested elements you can easily specify multiple

RFE: javac and filesets

2001-08-21 Thread T Master
, that they allow use of a FileSet (and refid use of a patternset) ? I could then use the same patternset for compiling and cleaning. Comments please. T Master

Re: Setting a property based on the OS

2001-08-21 Thread T Master
On Mon, 20 Aug 2001, T. Master [EMAIL PROTECTED] wrote: How would this then be used in a target? conditon? Like any other task. Or do you mean the property? Like any other property. Stefan

Re: javac and filesets

2001-08-21 Thread T Master
function and pass this to a common.xml file. Question: How does one pass a fileset or patternset from one file to another? Use of params? Example snippet anyone? My email RFE is thus moot, unless i run into problems. TIA. T Master. - Original Message - From: T Master [EMAIL

Re: javac and filesets

2001-08-22 Thread T Master
=compile depends=init javac destdir=${build.dir} debug=off verbose=false classpath refid=project.class.path/ src path refid=project.src.path /src /javac /target T Master - Original Message - From

Re: taskdef and property declarations

2001-08-22 Thread T Master
Don't include it in ant.jar. When you update your ant.jar you will have problems and curse for a few hours until you realise what a bozo you were in putting the properties file there :p Simpler to declare it in your build file. IMHO. T Master - Original Message - From: Supriya Saha

ejbjar and weblogic element error help

2001-08-23 Thread T Master
This is my first time using this task. It is apparently looking for a wenlogic deployment descriptor called: ejb-weblogic-ejb-jar.xml This is the wrong name. ejbjar descriptordir=${src.dir}/com/iknowledge/inext/server/ejb srcdir=${src.dir}/com/iknowledge/inext/server/ejb

Re: ejbjar and weblogic element error help

2001-08-23 Thread T Master
Thanks for the clear example Chris. - Original Message - From: Chris Flemetakis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 2:05 PM Subject: Re: ejbjar and weblogic element error help You need to rename your descriptors in order for Ant to properly build

Re: com.sun.xml.parser.SAXParserFactoryImpl

2001-08-23 Thread T Master
bill, upgrade to jdk1.3 IMHO . Conor mentioned an error to do with crimson.jar and the JIT i had similar fancy errors with that. and obviously, ensure u have jaxp.jar and the other jar in your classpath for ant to use. Otherwise, i duno. T Master - Original Message

Re: The cv0f arguments on a Jar?

2001-08-24 Thread T Master
Use this: jar jarfile=${dist.dir}/${app.name}.jar basedir=${build.dir} includes=${project.path}/**/*.class excludes=${project.path}/**/*Test.class metainf dir=${src.dir}/${project.path.ejb} include name=ejb-jar.xml/

Re: FTP Optional Task

2001-08-24 Thread T Master
NETCOMPONENTS.JAR!!! DOWNLOAD IT!! - Original Message - From: DUBCHAK, JOHN [Non-Pharmacia/1000] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 24, 2001 1:00 PM Subject: FTP Optional Task Hello, I realize this question has probably been asked a thousand times but I

ejbc task help needed!

2001-08-24 Thread T Master
I need help using ejbc with weblogic, and ant 1.4beta2. My error is below. Apparently my directory is not a class. Go figure. The dest dir is set to the package space where the class files reside. Why can't I run ejbc on a jar file directly? Bill, any insight? jarProject: [jar]

Re: ejbc task help needed!

2001-08-24 Thread T Master
helper failed Help would be nice, unless im in the doghouse for being stupid. :) T Master. - Original Message - From: T Master [EMAIL PROTECTED] To: ant user mailist [EMAIL PROTECTED] Sent: Friday, August 24, 2001 1:26 PM Subject: ejbc task help needed! I need help using ejbc

Re: The cv0f arguments on a Jar? ejbc

2001-08-24 Thread T Master
. Not too much to ask! It may just cut down on mails such as mine. A better example for weblogic.ejbc can be found at this link: http://www.mycgiserver.com/~janaudy/jyperion.org/java/ant/ A nice implementation. Disgruntled beyond belief! T Master

Re: ejbjar task and support nested element

2001-08-27 Thread T Master
You know you're an idiot when you try and include class files from your src directory. As Homer says...DOH! - Original Message - From: T Master [EMAIL PROTECTED] To: ant user mailist [EMAIL PROTECTED] Sent: Monday, August 27, 2001 2:06 PM Subject: ejbjar task and support nested element

Re: Using EJB Task

2001-08-28 Thread T Master
publicId=-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN location=${buildfile.dir}/weblogic-ejb-jar_6_0.dtd/-- /ejbjar /target T Master. - Original Message - From: Conor MacNeill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 28, 2001 8:16 AM

Re: Using EJB Task

2001-08-29 Thread T Master
Ahhh. Thanks for the explanation Conor. T Master. - Original Message - From: Conor MacNeill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 28, 2001 5:49 PM Subject: RE: Using EJB Task From: T Master [mailto:[EMAIL PROTECTED]] I used the nested DTD element

Re: ejbjar headaches

2001-08-29 Thread T Master
Download optional.jar from the Ant site, and install it in the ANT_HOME/lib directory. - Original Message - From: Edgar Sánchez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 29, 2001 3:52 PM Subject: RE: ejbjar headaches Hi Atherton.. I used your the code you

Re: ejbjar headaches

2001-08-29 Thread T Master
The first jar is ok. The others are for verifyingthe file using the other two. I assume you use ant 1.3 though :) - Original Message - From: Edgar Sánchez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 29, 2001 4:22 PM Subject: Re: ejbjar headaches Thanks T

Re: includes and excludes

2001-08-30 Thread T Master
Here you go: This works for me, so if it doesn't for you OMG! Generally from all examples I've seen, you keep your excludes AFTER your includes. Stick to that order for readabiity and maintenance. I've not done anything with an excludes and includes such as yours. target name=jarProject

vssget problem

2001-08-30 Thread T Master
When I use the vssget task, the verbose output freezes at the output below: init: fetch: [echo] Fetching appserver classes of current version 1 from VSS to src/com/iknowledge/inext/server. [vssget] Username: tmaster It's interesting to note, that the command

Re: includes and excludes

2001-08-30 Thread T Master
:-( --- T Master [EMAIL PROTECTED] wrote: Ahh I'm using ant 1.4beta 2. ahve the corresponding 1.4 optional.jar You're using ant 1.3 . That's the difference, and hence the problem. - Original Message - From: Edgar Sánchez [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: Error while building

2001-08-30 Thread T Master
you need jaxp.jar most likely. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 30, 2001 5:50 PM Subject: Error while building hi all What does this error mean --- BUILD FAILED javax.xml.parsers.FactoryConfigurationError:

Re: Error while building

2001-08-31 Thread T Master
Try the Ant user manual for WAR http://jakarta.apache.org/ant/manual/CoreTasks/war.html - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 31, 2001 1:13 PM Subject: RE: Error while building i am a newbie please throw me a bone as to where i can

Re: Sending Mail from Ant on Windows

2001-09-05 Thread T Master
Archives are located at: http://marc.theaimsgroup.com/?l=ant-userr=1w=2 - Original Message - From: David Scassa [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 05, 2001 11:43 AM Subject: RE: Sending Mail from Ant on Windows Better to go for the build listener, it

Re: condition in 1.3

2001-09-05 Thread T Master
u might want to look at ant1.4 condition task never used it though. - Original Message - From: Zanabria, Moises [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 05, 2001 3:28 PM Subject: RE: condition in 1.3 Thanks Judy, it works, but I was wondering if is

Re: Installation problem

2001-09-06 Thread T Master
Do this: download ant.jar and the optional.jar too. Put the optional.jar in the ant_home/lib directory (this allows it to be in ants classapth). now do the following: ant.sh If all worked, you should get an error about there being no build.xml file (default build file name). T Master

Re: Can ejbjar deal with multiple entity ejb's in a jar?

2001-09-06 Thread T Master
yeah use the ejbjar task, and specify eveythign in your xml descriptor. mine: ejbjar descriptordir=${src.dir}/${project.path.ejb} srcdir=${build.dir} basejarname=myjar weblogic destdir=${domain.applications.dir}

Re: javac and JDK 1.4

2001-09-11 Thread T Master
set your JAVA_HOME accordingly. - Original Message - From: Steve Buroff [EMAIL PROTECTED] To: antUser [EMAIL PROTECTED] Cc: Buroff, Steven [EMAIL PROTECTED] Sent: Tuesday, September 11, 2001 11:20 AM Subject: javac and JDK 1.4 Anyone know how to use ant javac with JDK 1.4. I need to

classic compiler error message on linux

2001-09-12 Thread T Master
My build files have been ported to a linux box for use. However, running the ant.sh reports an error that the classic compiler could not be found, and to set the JAVA_HOME env var. This is set to the directory where jdk1.3 isinstalled though. Ideas to fix this bug?

classic compile error msg

2001-09-14 Thread T Master
This sounds like such a newbie question but i got the classic compiler not found message on linux, that had the JAVA_HOME set correctly. anyone have ideas? T Master

Re: classic compile error msg

2001-09-14 Thread T Master
using ant.14 with optional.jar for 1.4, and jdk1.3 - Original Message - From: Michael Laccetti [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 14, 2001 11:36 AM Subject: RE: classic compile error msg Using JDK1.4? -Original Message- From: T Master [mailto

documentation comment

2001-09-14 Thread T Master
compare the two, Ant is brilliant, super, a delight to use. Its Javadocs are comprehensible, as are its examples. Yes Log4J is a nice utility, but its documentation for examples, and javadocs are incomplete by a fair amount. My only whine. T Master

Re: documentation comment

2001-09-14 Thread T Master
of that to log4j, it's easy to see clear distinction between documentation levels. http://protomatter.sourceforge.net/latest/javadoc/com/protomatter/syslog/sys log-whitepaper.html T Master. - Original Message - From: Ylan Segal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September

Re: How to javac *only* the .java file I am currently editting?

2001-09-14 Thread T Master
Isn't that why Cash aka C# aka C-Sharp was created, for a purpose of C++? Mix it with Java and get a use. *wonders who is taking me seriously* T Master. - Original Message - From: James Bullington [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 14, 2001 1:34 PM Subject

Re: How to javac *only* the .java file I am currently editting?

2001-09-14 Thread T Master
Subject: Re: How to javac *only* the .java file I am currently editting? --- T Master [EMAIL PROTECTED] wrote: Curious... what would? Oh, it's just all that you.can't.getThere.fromHere.plonkity.plonk() silliness... and the rather remarkably untrue notion (apparently) that Java code is self

Re: How to javac *only* the .java file I am currently editting?

2001-09-14 Thread T Master
no point of. If I've twisted your words, I deeply apologise. Return to the tranquil garden, and blast some dark Jungle music out :) Or, chill out to some ambient Goldie - Timeless music. T Master. - Original Message - From: Diane Holt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday

Re: How to javac *only* the .java file I am currently editting?

2001-09-14 Thread T Master
1Ghz, shouldn't they already be nice? I wouldn't know, I only have a Transmeta 600, and P166. Have a gr8 weekend everyone#8-) T Master

changing behaviour per OS type

2001-09-17 Thread T Master
for Ant1.4. T Master

Re: Ant 1.4 question with usage in JBoss

2001-09-18 Thread T Master
You seem to have a refid= with no value. My first guess. RefIds are using to refer to a previously declared patternset or path. do a search in your build.xml file for refid. It should have a value assigned. T Master - Original Message - From: Arpita Chattopadhyay [EMAIL PROTECTED

Re: Please remove from the email list

2001-09-20 Thread T Master
Email this address: [EMAIL PROTECTED] [EMAIL PROTECTED] - Original Message - From: Stebick, David [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 2:15 PM Subject: Please remove from the email list Please remove me from this email list

Re: javac compilation error

2001-09-20 Thread T Master
-Original Message- From: T Master [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 3:27 PM To: [EMAIL PROTECTED] Subject: Re: Please remove from the email list Email this address: [EMAIL PROTECTED] [EMAIL PROTECTED] - Original Message - From: Stebick

javadoccing runtime exceptions

2001-09-20 Thread T Master
We javadoc our runtime exceptions that can be thrown from methods. However, warnings are produced as the runtime exception thrown is not part of the method signature. Is there a way to stop the verbosity of these warnings? verbose=false does not work for this. T Master.

Re: Calling Ant from a JSP Page (2)

2001-09-20 Thread T Master
There already is an Ant API Download the source, and accompanying javadocs. - Original Message - From: Massa, Ray [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 6:15 PM Subject: Calling Ant from a JSP Page (2) First thanks for all the responses the

Re: stopping an exec

2001-09-24 Thread T Master
Why are you using exec to call other buildfiles? use ant: ant antfile=${buildfile.dir}/${mybuildfile} target=build Unless of course, this is the way you want - Original Message - From: Joe St. Germain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 24,

Re: stopping an exec

2001-09-24 Thread T Master
, September 24, 2001 5:30 PM Subject: Re: stopping an exec Hi T Master, I'm new to ANT. I've only been using it for about 3 days. I've got all of my individual XML files done, but was thinking I could create a main XML file to kicj off all of the other XML files. A sort of controller XML file

Re: Book on Ant

2001-10-02 Thread T Master
I'd like to be an Editor / proof-reader. I find it easy to findbugs, and report back on unclear comments. Would the book be available free online? Should be! Topics for must-have: - installation (the jars to download). - property uses, file set uses. - example build files - build file

Re: How to Run Auto Build

2001-10-04 Thread T Master
What's the error output if any? - Original Message - From: Barry Jia [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 04, 2001 9:27 AM Subject: How to Run Auto Build H i, All, I wrote a batch file to run my build, I want to run it automatically at middle night at

Re: Ant 1.3 refuses to see optional.jar

2001-10-04 Thread T Master
stick optional.jar in $ANT_HOME/lib Sure the file is there? exported env ANT_HOME ? - Original Message - From: Laurent Duperval [EMAIL PROTECTED] The command line contains the optional.jar file in the classpath (yes, wec checked). The same build script works on all our other

Re: Identify which classes were created from a Java task?

2001-10-18 Thread T Master
Shouldn't you compare timestamp of class files to java files? Instead of jar'ed class files to built class files (unles syou meant that!) - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 18, 2001 10:23 AM Subject: RE: Identify which

Re: Identify which classes were created from a Java task?

2001-10-18 Thread T Master
- Original Message - From: Les Hughes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 18, 2001 1:19 PM Subject: RE: Identify which classes were created from a Java task? your uncle. Maybe? Or am I talking rubbish again and have I been doing too much powerpointing

Re: How do I delete all files subdirs under a directory?

2001-10-18 Thread T Master
Recursive is: mydir/** ** denotes recursive. Can be used with files too:mydir/**.class - Original Message - From: Kurt Olsen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 18, 2001 2:04 PM Subject: How do I delete all files subdirs under a directory? Hi,

Re: newbie

2001-10-18 Thread T Master
Winston, Ant works perfectly. Think about your design more . Newbie. heh This is my directory structure: | +- src my java code +- class my compiled class files +- distmy jar files belong here jar jarfile=myjar.jar

Re: MyVeryOwnTask

2001-10-18 Thread T Master
MyVeryOwnTask message=hello/ ? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 18, 2001 2:20 PM Subject: MyVeryOwnTask Hi guys, How do I acutally implement this in a build.xml file?

Re: MyVeryOwnTask

2001-10-18 Thread T Master
Christine, I'll email you directly a task i wrote on accepting a FileSet object. I'll just remove all the other code first. T Master - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 18, 2001 2:20 PM Subject: MyVeryOwnTask Hi guys, How do

Re: dtd nested element with WebLogic 6.0

2001-10-23 Thread T Master
I do this: ejbjar weblogic /weblogic include / exclude / support /support dtd publicId=-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN location=${buildfile.dir}/ejb-jar.dtd/ dtd publicId=-//BEA Systems,

Re: dtd nested element with WebLogic 6.0

2001-10-23 Thread T Master
Yup, I searched online and downloaded them myself. No more annoying msgs, or other people harassing me! - Original Message - From: Matt Lyon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 23, 2001 12:56 PM Subject: RE: dtd nested element with WebLogic 6.0 T Master

Re: example ANT scripts

2001-10-24 Thread T Master
Ant user manual... weblogic comes with one, so does ant. netbeans too. - Original Message - From: Bob Aiello [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 24, 2001 7:52 AM Subject: example ANT scripts does anyone know of a good site for example ANT scripts

Re: Why use an init target ?

2001-10-25 Thread T Master
spit chunks. T Master.

Re: deltree does not work

2001-10-31 Thread T Master
1. deltree dir=${destdir.dir}/com/futuresource/jmaf/charts/*.class/ 2. I have never used deltree. I use delete to delete a directory including subdirs. Look it up in the manual. - Original Message - From: Gene Margolin [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED]

  1   2   >