Just wondering if I can take advantage of mvn site while I'm experimenting with Tap 5.0.5 Snapshot:
At the moment, when I run mvn site, I'm getting this: [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Failed to resolve artifact. GroupId: org.apache.tapestry ArtifactId: tapestry-component-report Version: 5.0.5-SNAPSHOT Reason: Unable to download the artifact from any repository org.apache.tapestry:tapestry-component-report:pom:5.0.5-SNAPSHOT from the specified remote repositories: tapestry-snapshots ( http://people.apache.org/~hlship/tapestry-snapshot-reposit ory/), central (http://repo1.maven.org/maven2), people.apache.org (http://people.apache.org/repo/m2-snapshot-repository/), codehaus.snapshots (http://snapshots.repository.codehaus.org), openqa (http://maven.openqa.org/), howardlewisship.com (http://howardlewisship.com/repository) Relevant portion of my POM: <reporting> <!-- Adds a report detailing the components, mixins and base classes defined by this module. --> <plugins> <plugin> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-component-report</artifactId> <version>${tapestry-release-version}</version> <configuration> <rootPackage>org.example.myapp</rootPackage> </configuration> </plugin> </plugins> </reporting> ... ... <properties> <tapestry-release-version>5.0.5-SNAPSHOT</tapestry-release-version> </properties> No big deal if it's not available for the current version, I just wanted to make sure I am not doing something wrong.