Hi,
Per Rick's proposal, I have uploaded our M2 candidate artifacts to
http://people.apache.org/~rfeng/repo/. You can start to play with it. I have
tried a fresh build with the samples and it was successful. I intend to have
this site to simulate our final release including ditro, javadoc and maven.
Adding the following to pom.xml so that mvn will download Tuscany artifacts
from this private repo.
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Tuscany Snapshot Repository</name>
<url>http://people.apache.org/~rfeng/repo</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>apache.incubator</id>
<name>Tuscany M2 Repository</name>
<url>http://people.apache.org/~rfeng/repo</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
Thanks,
Raymond