Your source will need to be in /src/main/java and your test source in /src/test/java, otherwise you will need to add configuration in your POM to tell Maven where your source is.
Here's the default config (from the super POM supplied by Maven) - you can add something like this to your POM with your own choice of directories. However, I would recommend sticking to the default layout. <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> </build> --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
