I use thrift to generate code in target/generated-sources. The thrift compiler produces a directory named "gen-java" contains all the java code. When I execute "mvn compile", the code is generated correctly in target/generated-source/gen-java, but in compilation phase, it complains can't find the classes which defined in "gen-java".
In my understanding, maven 2 automatically add generated sources, is that right?
And what if my testing code also depends on the generated-sources, do I have to manually specified the compiler includes?