Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2010-12-09 21:12:58 +0000
committerPascal Rapicault2010-12-09 22:45:19 +0000
commit25a9b41f8928880ed4ad13d265d4e8cf2ef15951 (patch)
tree10c963138384f8cc9d41e0184ca4a82a5ac572a8 /org.eclipse.m2e.site
parent59185c39d016ed7cffc264f4b73a4904beaefc9b (diff)
downloadm2e-core-25a9b41f8928880ed4ad13d265d4e8cf2ef15951.tar.gz
m2e-core-25a9b41f8928880ed4ad13d265d4e8cf2ef15951.tar.xz
m2e-core-25a9b41f8928880ed4ad13d265d4e8cf2ef15951.zip
Attempt at directly publishing the artifact
Diffstat (limited to 'org.eclipse.m2e.site')
-rw-r--r--org.eclipse.m2e.site/pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/org.eclipse.m2e.site/pom.xml b/org.eclipse.m2e.site/pom.xml
index 32a42614..f56787ff 100644
--- a/org.eclipse.m2e.site/pom.xml
+++ b/org.eclipse.m2e.site/pom.xml
@@ -99,6 +99,27 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>wagon-maven-plugin</artifactId>
+ <version>1.0-beta-4-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <id>upload-file</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>upload</goal>
+ </goals>
+ <configuration>
+ <serverId>download.eclipse.org</serverId>
+ <includes>${project.build.directory}/target/site/**</includes>
+ <url>scp://dev.eclipse.org/</url>
+ <toDir>/home/data/users/prapicau/downloads/technology/m2e/updates/N</toDir>
+ </configuration>
+ </execution>
+
+ </executions>
+ </plugin>
</plugins>
</build>
</profile>

Back to the top