Is it possible, for example with the help of ant, to avoid deep directory structures that come along with deep package nesting?
Suppose I wrote ClassA and ClassB, both in package com.domain.name, is it possible to avoid a directory layout like
project/
- build.xml
- src/
- com/
- domain/
- name/
- ClassA.java
- ClassB.java
and go instead for the simpler
project/
- build.xml
- src/
- ClassA.java
- ClassB.java