| Terracotta Documentation Terracotta documentation is categorized into DSO documentation and product documentation. Other Terracotta documentation includes whitepapers and introductory tutorials. Note the following links: • New Documentation Home Page – Introduction and links to Terracotta documentation.• Product Documentation – Covers Terracotta products and related topics:
|
|
Using Maven with TerracottaThe following is the default Maven repository for Terracotta: http://www.terracotta.org/download/reflector/maven2 Stable Maven RepositoryFor the stable Maven repository for Terracotta, add the following configuration to your pom.xml, replacing $TERRACOTTA_VERSION with the target Terracotta version: <repositories> <repository> <id>terracotta-repository</id> <url>http://www.terracotta.org/download/reflector/stable/$TERRACOTTA_VERSION</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>terracotta-repository</id> <url>http://www.terracotta.org/download/reflector/stable/$TERRACOTTA_VERSION</url> </pluginRepository> </pluginRepositories> For example, for Terracotta 3.1.0-FC, use the following configuration: <repositories> <repository> <id>terracotta-repository</id> <url>http://www.terracotta.org/download/reflector/stable/3.1.0-FC </url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>terracotta-repository</id> <url>http://www.terracotta.org/download/reflector/stable/3.1.0-FC </url> </pluginRepository> </pluginRepositories> The stable repository contains stable versions of Terracotta Integration Modules (TIMs). Using Maven Projects in TerracottaSee the Maven plugin page in the Terracotta Forge: http://forge.terracotta.org/releases/projects/tc-maven-plugin/ The following Maven sample projects are available: |