To all Maven users: we are rearranging public maven repositories and moving all snapshots into the new dedicated repository for snapshots located at http://download.terracotta.org/maven2-snapshots
Note that you should NOT have trailing slash because of the issues between Maven and S3. I've updated maven plugin to use new repository by default, but you may need to wait until Jason push new plugin to S3. Also note that we haven't completely cleaned up old repository from snapshot jars due to some issues with S3. So, if you need to use both http://download.terracotta.org/maven2-snapshots and http://download.terracotta.org/maven2 repositories, then you should put the snapshot one up front. For example: <pluginRepositories> <pluginRepository> <id>terracotta-snapshots</id> <url>http://download.terracotta.org/maven2-snapshots</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>terracotta-repository</id> <url>http://download.terracotta.org/maven2</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> ... regards, Eugene _______________________________________________ tc-dev mailing list [email protected] http://lists.terracotta.org/mailman/listinfo/tc-dev
