I am trying to change a ant project to maven project, here is the problem. for example: I have two source folder.
-pom.xml
-ejb
-org
-x
-ejbclass1.java
-tpf
-org
-x
-tpfclass1.java
now I want to generate class file under target folder like this:
ejb
-classes
-org
-x
-ejbclass1.class
tpf
-classes
-org
-x
-tpfclass1.class
is there any plugin can do this?