Not so much a programming question but I figured I'd ask anyway.
How do I make it so ant doesn't require that all the junit tests pass before building? In netbeans I can build the project without it testing first. However, when I run ant, it makes sure all my junit tests pass first. I am running ant from the command line in my netbeans project directory. Which files do I need to modify to tell ant not to do that?
To add some detail, it looks like the ant script goes into the build.xml and build-impl.xml files to determine what to do. build-impl.xml says not to edit it and to edit build.xml instead. Build.xml doesn't have any options for junit testing though, so I'm wondering where to disable testing.
Please let me know.
Thanks, jbu