For the past 2 years-(ish) I've been using Maven2 for my build/continuous integration solution. I used Ant a bit before that but really didn't get a lot of experience with it. Now I've taken a new job and the team I'm on now uses Ant.
What I'm wondering about is this:
In Maven we had directory conventions for seperating our java source and files and java test files (JUnit tests). It looked like this:
Project-
-src/main/java
-src/test/java
This way your tests are separate from your source/production code and won't be built/deployed as such.
Going over the Ant documentation I don't really see any convention for this. Am I missing something? Is there a similar convention in Ant?