- Applied a modified version of the patch in MAVEN-358

- Upped the project version to 1.2-SNAPSHOT
- Documented new properties
- Added changes record for this release


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113245 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2003-04-02 00:13:36 +00:00
parent 7239034b52
commit c5fddeb0d5
5 changed files with 35 additions and 3 deletions

View File

@@ -99,7 +99,7 @@
</exec>
<exec dir="." executable="${maven.ssh.executable}">
<arg line="${pom.siteAddress} -l ${maven.username} 'cd ${maven.homepage};gunzip ${maven.final.name}-site.tar.gz;tar xUvf ${maven.final.name}-site.tar;chmod -R g+u *;rm ${maven.final.name}-site.tar'"/>
<arg line="${pom.siteAddress} -l ${maven.username} 'cd ${maven.homepage};${maven.site.gunzip.executable} ${maven.final.name}-site.tar.gz;${maven.site.tar.executable} xUvf ${maven.final.name}-site.tar;chmod -R g+u *;rm ${maven.final.name}-site.tar'"/>
</exec>
<delete file="${maven.build.dir}/${maven.final.name}-site.tar.gz"/>

View File

@@ -10,5 +10,8 @@
# to copy the site to
maven.site.deploy.method=ssh
maven.site.tar.executable=tar
maven.site.gunzip.executable=gunzip
maven.username=USERNAME_NOT_SET

View File

@@ -5,7 +5,7 @@
<pomVersion>3</pomVersion>
<id>maven-site-plugin</id>
<name>Maven Site Plugin</name>
<currentVersion>1.1</currentVersion>
<currentVersion>1.2-SNAPSHOT</currentVersion>
<description/>
<shortDescription>Java Project Management Tools</shortDescription>
<url>http://maven.apache.org/reference/plugins/site/</url>

View File

@@ -6,16 +6,26 @@
</properties>
<body>
<release version="1.1" date="in CVS">
<release version="1.2" date="in CVS">
<action dev="dion" type="add" due-to="John Casey">
Added properties <code>maven.site.gunzip.executable</code>
and <code>maven.site.tar.executable</code>
</action>
</release>
<release version="1.1" date="2002-02-12">
<action dev="dion" type="add" due-to="Alef Arendsen">
Added ability to deploy via filesystem
</action>
</release>
<release version="1.0" date="2002-08-04">
<action dev="jvanzyl" type="add">
Original release for Maven 1.0-beta6
</action>
</release>
</body>
</document>

View File

@@ -42,6 +42,25 @@
The <code>siteDirectory</code> property will be used to copy the site to.
</td>
</tr>
<tr>
<td>maven.site.tar.executable</td>
<td>Yes</td>
<td>
Specifies the executable to use for 'tar' when deploying the site.
Defaults to <code>tar</code>. Override this property if your
system has a default version of tar that is failing.
</td>
</tr>
<tr>
<td>maven.site.gunzip.executable</td>
<td>Yes</td>
<td>
Specifies the executable to use for 'gunzip' when deploying the site.
Defaults to <code>gunzip</code>. Override this property if your
system has a default version of gunzip that is failing.
</td>
</tr>
</table>
</section>
</body>