Not here.
BTW, are any of the snapshot maven repositories (github-hosted or sonatype) automatically updated?
Sonatype looked a little out of date (8/9 last update) and https://raw.github.com/sculptor/snapshot-repository/maven failed fetching sculptor-generator-library.
<profile>
<id>sculptor-staging</id>
<repositories>
<repository>
<id>Sculptor Staging</id>
<url>http://oss.sonatype.org/content/repositories/orgsculptorgenerator-1004/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Sculptor Staging</id>
<url>http://oss.sonatype.org/content/repositories/orgsculptorgenerator-1004/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>sculptor-snapshots</id>
<repositories>
<repository>
<id>Sculptor Snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Sculptor Snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>