how to include other JARs?

2007-02-14 Thread Thomas L Roche
Slightly offtopic, but since it's something that OP probably run into, and I didn't see it answered in the FAQ, I thought I'd ask: how to include other JARs with one's own? What I mean: I'm automating some tests on a legacy batch-mode app that runs remotely. Since * I want to touch the remote box

Re: how to (usably) include one JAR in another?

2005-12-01 Thread Thomas L Roche
Tom Roche 11/30/2005 10:35:26 PM: How best to make the task include the JAR's classes, not the JAR itself? Jon Skeet Thu, 01 Dec 2005 08:50:03 GMT >>> Have you tried using ? Tom Roche 12/01/2005 10:57 AM >> > description="Build project.jar"> >> > jarfile="${build.result.fo

Re: how to (usably) include one JAR in another?

2005-12-01 Thread Thomas L Roche
Tom Roche 11/30/2005 10:35:26 PM: >> How to make include the *contents* of another JAR, rather >> than just that JAR file itself? >> I tried >> > description="Build project.jar"> >> > jarfile="${build.result.folder}/project.jar"> >> >> >> >> >> >>

how to (usably) include one JAR in another?

2005-11-30 Thread Thomas L Roche
How to make include the *contents* of another JAR, rather than just that JAR file itself? What I mean: I inherited a project with a JAR but no build.xml :-( so I'm creating one. The oddest thing about this project is that, under its lib/, it has classes, not JARs: > $ find project/lib/ -type f |

testing ant failure

2005-11-11 Thread Thomas L Roche
How to test that an ant script fails appropriately? Specifically: I'm working on a build app (a java app for building lots of different things in lots of different places) that basically {creates, shleps, invokes} ant scripts. I have a few JUnit tests on the app (and am writing more). I'm hookin