On 4/21/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote:
> Yeah I think you're right! Now that you mention it I think you have to
> use the lastest snapshot built which is way better anyway. The site
> plugin hasn't seen a new release in a long time. Just add the Maven
> snapshots repository to your pom and declares the use of the
> 2.0-SNAPSHOT site plugin.
That help got me further, but now it is complaining about the skins. I added
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-site-skin</artifactId>
<version>1.0-SNAPSHOT</version>
</skin>
to my site.xml
and now I get the following error
[INFO] The skin does not exist: Unable to download the artifact from any reposit
ory
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.apache.maven.skins -DartifactId=maven
-site-skin \
-Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file
org.apache.maven.skins:maven-site-skin:jar:1.0-SNAPSHOT
from the specified remote repositories:
Maven Snapshots (http://snapshots.maven.codehaus.org/maven2/),
central (http://deva3.cde.ace.cbp.dhs.gov/repository/),
Maven Snapshots 2 (http://cvs.apache.org/maven-snapshot-repository/)
Do you know if I need to install the skin manually and if so how I can do it?
Thanks.