Adding the ASF snapshot repo so the site can be deployed. Also adding a change from scp to scpexe (and minotaur to people); and a wagon-ssh-external extension. Please advise if there's a better way to do the latter one; that's how I deploy the site to take advantage of my ssh-agent.

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@478976 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2006-11-24 20:16:09 +00:00
parent f70c29e3ce
commit cd7d42e79d
1 changed files with 20 additions and 1 deletions

21
pom.xml
View File

@ -70,10 +70,17 @@
<distributionManagement> <distributionManagement>
<site> <site>
<id>apache.website</id> <id>apache.website</id>
<url>scp://minotaur.apache.org/www/maven.apache.org/archiva/</url> <url>scpexe://people.apache.org/www/maven.apache.org/archiva/</url>
</site> </site>
</distributionManagement> </distributionManagement>
<build> <build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-alpha-5</version>
</extension>
</extensions>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.codehaus.plexus</groupId> <groupId>org.codehaus.plexus</groupId>
@ -478,6 +485,18 @@
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
</pluginRepository> </pluginRepository>
<!-- See: http://www.nabble.com/NoClassDefFoundError-from-shared-in-project-info-reports-tf2678299s177.html#a7489595 -->
<pluginRepository>
<id>apache.org</id>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories> </pluginRepositories>
<properties> <properties>
<maven.version>2.0.4</maven.version> <maven.version>2.0.4</maven.version>