Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Most of the files are in Markdown format in trunk/src/site/markdown but there are a few important files in trunk/src/site that control the overall site and resources such as images are in trunk/src/site/resources.

4. Generate static site files

Once you have finished making changes the files must be committed in order to publish them to the Apache site. These files will be generated into site. The touch command shown below is to ensure that the site/index.html file is generated even if the index.md file isn't modified.

Code Block
touch trunk/src/markdown/index.md
mvn -f trunk/site/pom.xml site

5. Commit site files

The committing of the files causes the site to be published. In particular the generated static files in site are published to the Apache website.

Code Block
svn commit -m "Update of site."

6. Validate site

The site typically takes less than 5 minutes to update. You should confirm however that your changes have properly been published to the public site.

...