|
The paths used in the ant build.xml don't match the actual file structure. In particular, the following changes should be made:
The following lines should be changed
- <property name="src.main.dir" value="src/java" />
- <property name="src.test.dir" value="src/test" />
into
+ <property name="src.main.dir" value="src/main/java" />
+ <property name="src.test.dir" value="src/test/java" />
|