Pure Ant

2005-10-12 Thread Alan Gutierrez
cely, or will I just keep adding dependencies? -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogometer/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Import and Macro Warnings

2005-10-06 Thread Alan Gutierrez
* Alan Gutierrez <[EMAIL PROTECTED]> [2005-10-06 15:45]: > * Alan Gutierrez <[EMAIL PROTECTED]> [2005-10-06 15:22]: > > I want to use a set of macros across projects, but when I write > > scripts that integrate the builds, I start getting a lot of > >

Re: Import and Macro Warnings

2005-10-06 Thread Alan Gutierrez
* Alan Gutierrez <[EMAIL PROTECTED]> [2005-10-06 15:22]: > I want to use a set of macros across projects, but when I write > scripts that integrate the builds, I start getting a lot of > warnings, even though the build works fine. > > Duplicated project name i

Import and Macro Warnings

2005-10-06 Thread Alan Gutierrez
doesn't matter because the macro is only called by the project that's building it's siblings (dependencies) . Is there a way to surpress these warnings? -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogometer/ -

Re: Java Source Cross-Reference

2005-10-05 Thread Alan Gutierrez
t downloadable on its own > > anywhere Brett? > > We only just separated it from a Maven plugin. > https://svn.apache.org/repos/asf/maven/jxr/trunk/ Brett Does Maven JXR do 1.5? -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogometer/

Re: Java Source Cross-Reference

2005-10-04 Thread Alan Gutierrez
e this software. You may modify, translate or adapt the generated HTML code. You are not granted any right, title, or interest in the the software except the right to use it in accordance with this Agreement. Feh. -- Alan Gutierrez - [E

Re: Java Source Cross-Reference

2005-10-04 Thread Alan Gutierrez
and it seemed to work fine for that. :) -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogometer/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Java Source Cross-Reference

2005-09-30 Thread Alan Gutierrez
at Ant task I wrote and use it. -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogometer/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Java Source Cross-Reference

2005-09-30 Thread Alan Gutierrez
Is there a source cross-reference tool in Java out there that I can use as part of an Ant build? The only one I now if is Maven's tool that comes with Jetty. -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogo

JUnit Task Working Directory

2005-08-20 Thread Alan Gutierrez
I've written test that reference files using relative paths. They are not failing when I run the build.xml using the Ant task from a build.xml in a parent directory. Is there a way to change directory, or can/should I pass in the base direcotry using sysproperty? --

Re: How to?: add target dependencies

2005-02-12 Thread Alan Gutierrez
* Mark Lundquist <[EMAIL PROTECTED]> [2005-02-12 09:01]: > > Hey Alan, good to hear from you! > > On Feb 11, 2005, at 5:57 PM, Alan Gutierrez wrote: > > >Mark > > > >I'm now using XSLT to generate my Ant files. Any place where > >th

Re: How to?: add target dependencies

2005-02-12 Thread Alan Gutierrez
* Mark Lundquist <[EMAIL PROTECTED]> [2005-02-12 09:01]: > > Hey Alan, good to hear from you! > > On Feb 11, 2005, at 5:57 PM, Alan Gutierrez wrote: > > >Mark > > > >I'm now using XSLT to generate my Ant files. Any place where > >th

Re: How to?: add target dependencies

2005-02-11 Thread Alan Gutierrez
y sort of logic, XSLT makes it simple and straghtforward. I know you work with XSLT, so I'm going to encourage you to leverage those studies. Let me know if you want to look at what I've been up to. -- Alan Gutierrez - [EMAIL PROTECTED]

Re: XML and copy directories

2005-02-04 Thread Alan Gutierrez
re are many tasks Java will automate, that will take me much longer to write in Ant. Ant tasks are simple to write, anyhow. All the nice features of an Ant script, the dependencies, the paths, the super-globbing, are available to your Java Ant task. -- Alan Gutierrez - [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Basic regex questions.

2005-01-31 Thread Alan Gutierrez
go > >with a). > > > > > > > This is the reason I am confused. > http://java.sun.com/docs/books/tutorial/extra/regex/char_classes.html > If you look under the union (and other) section on that page, they > cons

Re: Parsing XML

2005-01-31 Thread Alan Gutierrez
different targets. The next step > is to put each target into a vector or hashtable. SO i have two questios > > 1) Is it better to load the xml file into a vector or hashtable so that > i can read the varsious targets set in the build.xml file Use a java.lang.Set

Re: Where does optional.jar come from?

2005-01-21 Thread Alan Gutierrez
re in optional.jar. As of 1.6 ant.jar still contians "Core Tasks" while the optional tasks are broken out into separate jars, generally grouped by tasks, but sometimes not, as in the case of JavaCC being in ant-nodeps.jar .

Re: how to invoke ant via java

2005-01-19 Thread Alan Gutierrez
xml will > do what is necessary. > > How can I do it? That is, how to call the Ant via java? Is there any > way to use an Ant object? Yes. Try reading through the source of: org.apache.tools.ant.launcher.Launcher Cheers. --