> This compiles all the java classes with target as 1.6. I have one package > in my project which I need to be compiling using target 1.5.
The best way to handle this IMO is to move that package into another project with its own pom and specify target 1.5 there, and then depend on that new artifact in this project. Otherwise you will be dealing with annoying (to me) includes and excludes. Wayne
