Previous: Becoming
a FuGE Developer |
This section is for FuGE developers only: that is, those who are identified on the SourceForge project site as developers or administrators. It offers guidelines in modifying and documenting this STK. You will only be able to modify the website or the code in Subversion if you are a FuGE developer.
If you're contributing new Java classes to the STK, please ensure that you have put in useful javadoc for all methods. If you've created a new package or sub-project, you'll also need to check the top-level pom.xml in the reporting element, and ensure that your source code will get picked up by the javadoc plugin when the mvn site:site command is run.
Also, please copy the license section from one of the existing Java classes and include it in your file.
You can commit changes if one of the FuGE SourceForge administrators adds you as a FuGE developer. You will need to contact fuge-devel@lists.sourceforge.net if you wish to be added.
More information on Subversion can be found in its Manual .
If any of the changes you make change how a user would install or use this STK, please ensure that you update the Hibernate documentation, which we make available via the website both in html and pdf format. The actual documentation is built using the APT (Almost Plain Text) Format and then generated by maven into other formats.
The APT files are made into a book using the doxia maven plugin - this is a plugin that, in a more generic usage, also builds the maven site documentation when you run the command mvn site:site . The benefit of using the Doxia book plugin is that it can create the book in multiple versions: currently we build the book in xdoc format, which is used by the mvn site:site command, and in pdf, which is manually copied to the FuGE website for download and offline use. Please see the Doxia Plugin Manual and information on writing in APT format .
You build the new version of the book by going into the books/ sub-directory and running the book-generation command:
cd books/ mvn doxia:render-books
This builds the book in the books/target/generated-site directory.
When you are ready to re-build the entire website, go into the top-level directory and generate the site docs in each of the sub-projects:
mvn site:site
This actually builds all of the html files. However, they are still in their individual sub-directory's target/site directory. To put them all together and copy them to the FuGE website, you need to use the mvn site:deploy command. However, to prevent accidental copying, the shell.sf.net site element is commented out. Please ensure this remains the case when you are committing changes to SVN.
Also edit your $M2_HOME/settings.xml file by adding the following:
<server> <id>shell.sf.net</id> <username>your sf username</username> <password>your sf password</password> </server>
mvn site:deploy JUST copies the already-generated site docs. If you make a change to any of the APT files, you must run mvn site:site FIRST, to re-generate the site docs, THEN mvn site:deploy to copy them to the final location described in the distributionManagement element of the pom.xml
It is a good idea to test the maven-generated site before publishing to the fuge website. Change the url element of the local-test site element below to local directory that is right for you, then deploy locally:
mvn site:deploy
and check the resulting site. If all looks OK, comment-out the local-test site element and un-comment the shell.sf.net site element. Only developers with write-access to the shell.sf.net server and the fuge group area will be able to perform this goal. Run the deploy command again to copy to the real SourceForge webserver:
mvn site:deploy
The only problem with the site deployment at the moment is that it doesn't copy the non-html books properly. This means that the pdf version of the installation instructions doesn't get put on the server. So, as a final step, you need to scp the pdf manually:
scp books/target/generated-site/pdf/fuge-hibernate/fuge-xsd.pdf your-username@shell.sf.net:/home/groups/f/fu/fuge/htdocs/stks/hibernate-stk/
You can only run site:deploy successfully if you are down as a FuGE developer on the SF site.
Previous: Becoming
a FuGE Developer |