PR: MPARTIFACT-23

add -o option to unzip


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115675 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2004-07-06 14:29:30 +00:00
parent 643cc623f6
commit b554c68dd7
2 changed files with 3 additions and 2 deletions

View File

@ -42,7 +42,7 @@ import java.util.List;
* An SSH2/SCP deployer
*
* @author Michal Maczka
* @version $Revision: 1.11 $ $Date: 2004/06/25 13:50:05 $
* @version $Revision: 1.12 $ $Date: 2004/07/06 14:29:30 $
*/
public class ScpDeployer extends GenericSshDeployer
{
@ -196,7 +196,7 @@ public class ScpDeployer extends GenericSshDeployer
doCopy(session, request);
String unzipCmd =
"unzip -u "
"unzip -uo "
+ getRepositoryInfo().getBasedir()
+ "/"
+ request.getDestFile()

View File

@ -26,6 +26,7 @@
</properties>
<body>
<release version="1.4-SNAPSHOT" date="in CVS">
<action dev="brett" type="fix" issue="MPARTIFACT-23">Add overwrite option to unzip - necessary to run in batch mode</action>
<action dev="brett" type="add" issue="MPARTIFACT-22" due-to="Leif Nelson">Add an scp executable deployer</action>
<action dev="brett" type="update">Deprecated the artifact:load hook goal</action>
<action dev="brett" type="add">Allow use of distributionSite POM attribute in artifact method</action>