Released 23/06/2006
The snapshot builds of XSite can be found on the snapshots repository:
Be sure to choose the snapshot with the latest timestamp in the filename.Maven 2 users can easily add XSite as a dependency to their projects. Add the following repositories to the POM:
<repositories> <repository> <id>codehaus-m2-repository</id> <name>Codehaus Maven 2.x Repository</name> <url>http://repository.codehaus.org</url> </repository> <repository> <id>codehaus-m2-snapshot-repository</id> <name>Codehaus Maven 2.x Snapshot Repository</name> <url>http://snapshot.repository.codehaus.org</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories>
<plugins> <plugin> <groupId>org.codehaus.xsite</groupId> <artifactId>xsite-maven-plugin</artifactId> <configuration> <siteMapPath>${basedir}/src/content/website.xml</siteMapPath> <skinPath>${basedir}/src/templates/skin.html</skinPath> <outputDirectoryPath>${basedir}/target/xsite</outputDirectoryPath> </configuration> <executions> <execution> <phase>install</phase> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins>