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

   **[Jochen 
Wiedmann](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jochen.wiedm...@gmail.com)**
 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: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to