
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
04/Nov/06 12:47 PM
|
|
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" />
|
|
Description
|
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" />
|
Show » |
|