jira-importer commented on issue #156:
URL: 
https://github.com/apache/maven-deploy-plugin/issues/156#issuecomment-2771511044

   **[Jochen 
Wiedmann](https://issues.apache.org/jira/secure/[email protected])**
 commented
   
   Thanks for the suggestion, Dan. I did not know the wagon-maven-plugin, but 
the following snippet does exactly what I had in mind:
   
       <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>wagon-maven-plugin</artifactId>
          <version>1.0-beta-3</version>
          <executions>
            <execution>
              <id>deploy-update-site</id>
              <phase>deploy</phase>
              <goals>
                <goal>upload</goal>
              </goals>
              <configuration>
                <fromDir>${project.build.directory}/site</fromDir>
                
<url>sftp://web.sourceforge.net/home/groups/m/mo/mongrel/htdocs/updates</url>
                <serverId>mongrel.sf.net</serverId>
              </configuration>
            </execution>
          </executions>
       </plugin>
   
   I am therefore closing this issue.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to