Re: Release 1.4 of Checkstyle

2002-01-25 Thread Stephane Bailliez
Another version. (first one was posted from a nonsubscribed account, may take some time to appear) Stephane - Original Message - From: "Erik Hatcher" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]>; "ant-dev" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, Januar

Re: Release 1.4 of Checkstyle

2002-01-25 Thread Stephane Bailliez
Quickly did this one a long time ago. It's not framed. Sorry it's very bad but should help you see results quickly. Will send a new layout later - Original Message - From: "Erik Hatcher" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]>; "ant-dev" <[EMAIL PROTECTED]> Cc: <[EMAI

build.xml file for ejbs

2002-01-25 Thread D Srinivas
Hi all , Iam developing EJB components using EJB2.0 specs under weblogic6.0 app server. i have the ejb source files and deployment descriptor xml files. i downloaded Ant 1.4.1 and i want to build the ejbs with ant.i'e i want to build the final jar files. can anybody give me the sample build.xml

Re: Logo Contest - Last Call!!!!!

2002-01-25 Thread T Master
Send an email with the subject line "LOGO VOTE" and the body can include ONLY the submission identifier. Then the emails can be filtered easily. One idea. Multiple submissions from the same email address can be disqualified (or only a single one accepted). A suggestion :) T Master - Origi

RE: Any way to avoid copying to keep dir structure intact?

2002-01-25 Thread Duffey, Kevin
Forgot to add one thing to this.. Sometimes, I would like to pull items from one dir, and stick them in another dir, again without copying. For example: c:/images/*.gif into the jar as /web/doc/img/*.gif I answered my previous question..I figured out how to do it, keeping the "same" dir inta

Any way to avoid copying to keep dir structure intact?

2002-01-25 Thread Duffey, Kevin
Hi all, I am jarring up many dirs and files into a single jar. The dirs are spread around in different areas. Right now I have to copy all files from each dir into the dir structure below a common dir. Then I jar up that DIR. The process of copying lots of files just to keep the dir structure int

Re: Using Xalan with Ant's built-in Style task

2002-01-25 Thread Peter Donald
On Fri, 25 Jan 2002 05:29, Vaughan Jackson wrote: > Hi Pete, > > Your response below caught my interest. I seem to be experiencing a > problem related to that described by Mike Van Riper. The style task > only works if I place xalan.jar in the ant lib directory. It will not work > if I instead add

Re: Can not get build.xml to work

2002-01-25 Thread Steve Loughran
> > 2. build after SET CLASSPATH= > > Seems to have helped, although the build failed. Ant java command looks > the same except the user classpath has not been added to the system classpath: what is happening is that the ant classpath which is autobuilt up is not getting confused by the predefi

RE: javac and filesets?

2002-01-25 Thread Donald Mitchell
There were two problems. The version of I was running when I got the message below actually had the tag included under the tag. The second problem was that patternset had the wrong patterns in it. The example shown below is working now. Don -Original Message- From: Erik Hatcher [ma

Re: javac and filesets?

2002-01-25 Thread Erik Hatcher
Care to share what the problem was? - Original Message - From: "Donald Mitchell" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Friday, January 25, 2002 8:07 PM Subject: RE: javac and filesets? > I found my problem. > > Thanks, > Don > > -Original Message-

Re: Can not get build.xml to work - working now.

2002-01-25 Thread Dave Murvin
At 04:46 PM 1/25/2002, you wrote: >2. build after SET CLASSPATH= > >Seems to have helped, although the build failed. Ant java command looks >the same except the user classpath has not been added to the system classpath: > >C:\Program Files\UW Classes\Java Certificate 2001\Java >Fundamentals\Ass

RE: javac and filesets?

2002-01-25 Thread Donald Mitchell
I found my problem. Thanks, Don -Original Message- From: Donald Mitchell [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 4:19 PM To: 'Ant Users List' Subject: javac and filesets? Hi, I want to use a fileset or patternset to include and exclude files for the javac tag, but I

Re: Release 1.4 of Checkstyle

2002-01-25 Thread Erik Hatcher
Has anyone created XSL files to turn the XML output of into a Javadoc-like (aka -like) set of HTML frameset pages? If so, care to share? If not, then I'll take a stab at it in the near future. Erik - Original Message - From: "Oliver Burn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

Re: Can not get build.xml to work

2002-01-25 Thread Dave Murvin
At 10:30 PM 1/24/2002, you wrote: > > > > C:\Program Files\UW Classes\Java Certificate 2001\Java > > Fundamentals\Assignments\Assignment01>"C:\java\jdk13\bin\java" -classpath > > >"C:\java\jdk13\lib\tools.jar;C:\Ant\jakarta-ant-1.4.1\lib\jaxp.jar;C:\Ant\ja >karta-ant-1.4.1\lib\crimson.jar;C:\Ant\

javac and filesets?

2002-01-25 Thread Donald Mitchell
Hi, I want to use a fileset or patternset to include and exclude files for the javac tag, but I don't know how to reference it. The javadoc page for javac has this comment: This task forms an implicit FileSet and supports all attributes of (dir becomes srcdir) as well as the nested , and ele

RE: ant-Junit question

2002-01-25 Thread Steve Cohen
Ah, the light dawns. Even with "fork" set to yes, you STILL have to have a dir="${basedir}" in the task. Just setting "fork" to yes won't change the dir. -Original Message- From: Steve Cohen Sent: Friday, January 25, 2002 3:54 PM To: Ant Users List Subject: RE: ant-Junit question We

property that determines target

2002-01-25 Thread Rubun Tang
Hi, I am wondering, is there a predefined property in ant that tells you what target has just been called? For example, if I go "ant jar", is there a property that tells me the target I've just called is "jar"? Thanks Rubun Tang msg12564/bin0.bin Description: application/ms-tnef -- To

RE: strange behavior in script task

2002-01-25 Thread Rubun Tang
Hi Peter, Got it. Thanks for the help! Rubun -Original Message- From: Peter Mularien [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 4:51 PM To: Ant Users List Subject: Re: strange behavior in script task Rubun - I'm looking at your script and seeing that it's adding tasks

RE: strange behavior in script task

2002-01-25 Thread Rubun Tang
I got it. In the task, when adding new task, it has to be added to a target that is currently running. For example, ... foo.addTask(f); will work when "ant foo" is called.