Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
Committer (Medium) - This is for regular contributors/committers
Description
Most modules are structured like:
src ├── main │ └── resources │ └── java │ └── org.apache.oodt... ├── test │ └── org.apache.oodt... └── testdata
These should all be converted to
src ├── main │ └── resources │ └── java │ └── org.apache.oodt... └── test │ └── resources │ └── java │ └── org.apache.oodt...
For each module, we need to create the new directory, copy the files over, delete the old directory, fix any breaking test cases, and remove the pom.xml entry that copies over the testdata (example).