| Issue 1: | Move TestModel from src/main to src/test |
1 of 2
Next ›
|
| 1 person starred this issue and may be notified of changes. | Back to list |
TestModel was moved from src/test to src/main. hbm2ddl needs a compiled class in order to function correctly. Since hbm2ddl is run before test-compile it doesn't find TestModel.class. We need to compile TestModel before running hbm2ddl to be able to move it back to src/test. |