-----Original Message----- From: Luis Arias [mailto:[email protected]] Sent: mercredi 20 avril 2005 21:47 To: [email protected] Subject: [xwiki-dev] Reorg of the source hierarchy and precise version identification
Hello all,
I've been busy this afternoon doing some housecleaning in the code base:
- seperate folders for src/main - core java src/test - unit tests src/test-cactus - integration tests
That's excellent and it's a first start towards a Maven-compatible directory structure. You may want to go one step further Luis by following the new recommended directory structure (http://maven.apache.org/reference/conventions.html). For example main java sources go into src/main/java, resources go into src/main/resources, java unit tests go to src/test/java, etc.
I've been building against the latests stable jars I could find, including hibernate 3.0.1 for which I had to change a lot of imports and some stuff in the configuration files.
I just commited the version numbered jars because we are going to be playing with Maven 2 tomorrow night at the OSSGTP and I figured it might be easier to write the dependencies that way.
Definitely! It's a good first step and in any case it's good to know which version of external libraries you're using. [snip] -Vincent