Author: bentmann
Date: Sun Dec 20 21:51:26 2009
New Revision: 892666
URL: http://svn.apache.org/viewvc?rev=892666&view=rev
Log:
o Updated site
Modified:
maven/plugins/trunk/maven-deploy-plugin/pom.xml
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ftp.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ssh-external.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-in-legacy-layout.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-classifiers.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-customed-pom.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-generic-pom.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-timestamps-suffix.apt
maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml
maven/plugins/trunk/maven-deploy-plugin/src/site/site.xml
Modified: maven/plugins/trunk/maven-deploy-plugin/pom.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/pom.xml?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-deploy-plugin/pom.xml Sun Dec 20 21:51:26 2009
@@ -144,7 +144,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.0</version>
+ <version>2.3</version>
<configuration>
<!-- For JIRA-report -->
<columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix
Version</columnNames>
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ftp.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ftp.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ftp.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ftp.apt
Sun Dec 20 21:51:26 2009
@@ -34,45 +34,25 @@
+----+
<project>
- <parent>
- <groupId>com.stchome</groupId>
- <artifactId>mavenFull</artifactId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.mycompany</groupId>
- <artifactId>my-app</artifactId>
- <packaging>jar</packaging>
- <version>1.1-SNAPSHOT</version>
- <name>Maven Quick Start Archetype</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <!-- Enabling the use of FTP -->
+ ...
<distributionManagement>
<repository>
- <id>ftp-repository</id>
- <url>ftp://repository.mycompany.com/repository</url>
+ <id>ftp-repository</id>
+ <url>ftp://repository.mycompany.com/repository</url>
</repository>
</distributionManagement>
<build>
<extensions>
+ <!-- Enabling the use of FTP -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
- <version>1.0-alpha-6</version>
+ <version>1.0-beta-6</version>
</extension>
</extensions>
</build>
-
+ ...
</project>
+----+
@@ -81,20 +61,15 @@
+----+
<settings>
-
...
-
<servers>
<server>
<id>ftp-repository</id>
<username>user</username>
<password>pass</password>
</server>
-
</servers>
-
...
-
</settings>
+----+
@@ -104,4 +79,4 @@
+----+
mvn deploy
-+----+
\ No newline at end of file
++----+
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ssh-external.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ssh-external.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ssh-external.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploy-ssh-external.apt
Sun Dec 20 21:51:26 2009
@@ -35,28 +35,7 @@
+----+
<project>
- <parent>
- <groupId>com.stchome</groupId>
- <artifactId>mavenFull</artifactId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.mycompany</groupId>
- <artifactId>my-app</artifactId>
- <packaging>jar</packaging>
- <version>1.1-SNAPSHOT</version>
- <name>Maven Quick Start Archetype</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <!-- Enabling the use of FTP -->
+ ...
<distributionManagement>
<repository>
<id>ssh-repository</id>
@@ -66,14 +45,15 @@
<build>
<extensions>
+ <!-- Enabling the use of FTP -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
- <version>1.0-alpha-5</version>
+ <version>1.0-beta-6</version>
</extension>
</extensions>
</build>
-
+ ..
</project>
+----+
@@ -108,9 +88,7 @@
using Maven:
+----+
-
mvn deploy
-
+----+
Sometimes you may have permissions problems deploying and if so you can set
the file and directory permissions
@@ -143,4 +121,5 @@
<<NOTE:>> If you are using Putty it will expect the private key to be in the
<<<PPK>>> format and not the standard
format so make sure you use <<<puttygen>>> to convert your openssh format key
to <<<PPK>>> format or generate another
- one. Windows users can find the Putty tools
{{{http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html}here}}.
+ one. Windows users can find the Putty tools on the
+ {{{http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html}PuTTY
Download Page}}.
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-in-legacy-layout.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-in-legacy-layout.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-in-legacy-layout.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-in-legacy-layout.apt
Sun Dec 20 21:51:26 2009
@@ -54,7 +54,7 @@
of repository, set the <<repositoryLayout>> parameter to <<<legacy>>> value.
+---+
-mvn deploy:deploy-file -Durl=file://C:\m2-repo \
+mvn deploy:deploy-file -Durl=file:///C:/m2-repo \
-DrepositoryId=some.id \
-Dfile=your-artifact-1.0.jar \
-DpomFile=your-pom.xml \
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-classifiers.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-classifiers.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-classifiers.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-classifiers.apt
Sun Dec 20 21:51:26 2009
@@ -49,7 +49,7 @@
To add classifier into your artifact for your deployment, set the text to
the <<classifier>> parameter.
+---+
-mvn deploy:deploy-file -Durl=file://C:\m2-repo \
+mvn deploy:deploy-file -Durl=file:///C:/m2-repo \
-DrepositoryId=some.id \
-Dfile=path-to-your-artifact-jar \
-DpomFile=path-to-your-pom.xml \
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-customed-pom.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-customed-pom.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-customed-pom.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/deploying-with-customed-pom.apt
Sun Dec 20 21:51:26 2009
@@ -32,7 +32,7 @@
set the <<pomFile>> parameter to the path of the pom.xml.
+---+
-mvn deploy:deploy-file -Durl=file://C:\m2-repo \
+mvn deploy:deploy-file -Durl=file:///C:/m2-repo \
-DrepositoryId=some.id \
-Dfile=path-to-your-artifact-jar \
-DpomFile=path-to-your-pom.xml
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-generic-pom.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-generic-pom.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-generic-pom.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-generic-pom.apt
Sun Dec 20 21:51:26 2009
@@ -33,7 +33,7 @@
<<generatePom>> parameter to <<<false>>>.
+---+
-mvn deploy:deploy-file -Durl=file://C:\m2-repo \
+mvn deploy:deploy-file -Durl=file:///C:/m2-repo \
-DrepositoryId=some.id \
-Dfile=path-to-your-artifact-jar \
-DgroupId=your.groupId \
Modified:
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-timestamps-suffix.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-timestamps-suffix.apt?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-timestamps-suffix.apt
(original)
+++
maven/plugins/trunk/maven-deploy-plugin/src/site/apt/examples/disabling-timestamps-suffix.apt
Sun Dec 20 21:51:26 2009
@@ -32,7 +32,7 @@
To disable the addition of timestamp to the artifact, set the
<<uniqueVersion>> parameter to <<<false>>>.
+---+
-mvn deploy:deploy-file -Durl=file://C:\m2-repo \
+mvn deploy:deploy-file -Durl=file:///C:/m2-repo \
-DrepositoryId=some.id \
-Dfile=your-artifact-1.0.jar \
-DpomFile=your-pom.xml \
Modified: maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml Sun Dec 20
21:51:26 2009
@@ -43,6 +43,10 @@
Maven 2 installation.
</p>
<p>
+ As an alternative to placing the wagon provider into the Maven
distribution, you can also create a dummy
+ POM that declares the required wagon as an
<code><extension></code> inside the current directory.
+ </p>
+ <p>
If the error description is something like this:
</p>
<p>
@@ -60,7 +64,7 @@
<question>I don't want to deploy one of the artifacts in my
multi-module build. Can I skip deployment?</question>
<answer>
<p>
- Yes, you can skip deployment of individual modules by configuring
the deploy plugin as follows:
+ Yes, you can skip deployment of individual modules by configuring
the Deploy Plugin as follows:
</p>
<p>
<source>
Modified: maven/plugins/trunk/maven-deploy-plugin/src/site/site.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/site.xml?rev=892666&r1=892665&r2=892666&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/site/site.xml (original)
+++ maven/plugins/trunk/maven-deploy-plugin/src/site/site.xml Sun Dec 20
21:51:26 2009
@@ -22,7 +22,7 @@
<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0
http://maven.apache.org/xsd/decoration-1.0.0.xsd"
- name="Maven Deploy plugin">
+ name="Maven Deploy Plugin">
<body>
<menu name="Overview">
<item name="Introduction" href="index.html"/>