BigMemory 4.3.7 | Product Documentation | BigMemory Max Developer Guide | Working with Apache Maven | Working With Terracotta SNAPSHOT Projects
 
Working With Terracotta SNAPSHOT Projects
If you intend to work with Terracotta SNAPSHOT projects (usually in trunk), you must have the following settings.xml file installed:
<settings xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
     http://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
     <profile>
       <id>terracotta-repositories</id>
       <repositories>
         <repository>
            <id>terracotta-snapshots</id>
            <url>http://www.terracotta.org/download/reflector/snapshots</url>
         </repository>
       </repositories>
      <pluginRepositories>
        <pluginRepository>
           <id>terracotta-snapshots</id>
           <url>http://www.terracotta.org/download/reflector/snapshots</url>
        </pluginRepository>
      </pluginRepositories>
     </profile>
</profiles>
<activeProfiles>
<activeProfile>terracotta-repositories</activeProfile>
</activeProfiles>
</settings>