Closed lvjp closed 13 years ago
What user can expect:
mvn generate-sources
mvn generate-test-sources
What it should be writted:
<executions> <execution> <phase>generate-sources</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <phase>generate-test-sources</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions>
It is also necessary to set the id attribute I have made the change to the README
Thanks.
What user can expect:
mvn generate-sources
generate the sources for the main foldermvn generate-test-sources
generate the sources for the test folderWhat it should be writted: