Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorRoland Grunberg2013-09-11 17:06:19 +0000
committerRoland Grunberg2013-09-11 17:10:26 +0000
commit7203f729f8aacc5e5cd9c1937c54848a438a4d01 (patch)
treed60995d1d6e93bf5213409b2f58d6e80e2b37bdc /releng
parent7abff821a4a77f99651b18ac790d7c03048ef409 (diff)
downloadorg.eclipse.linuxtools-7203f729f8aacc5e5cd9c1937c54848a438a4d01.tar.gz
org.eclipse.linuxtools-7203f729f8aacc5e5cd9c1937c54848a438a4d01.tar.xz
org.eclipse.linuxtools-7203f729f8aacc5e5cd9c1937c54848a438a4d01.zip
Restore saving of latest generated p2 repository to update-nightly.
Change-Id: I210ef4b22bba8501bd90ce3f376e7d3372aa4750 Reviewed-on: https://git.eclipse.org/r/16336 Reviewed-by: Roland Grunberg <rgrunber@redhat.com> IP-Clean: Roland Grunberg <rgrunber@redhat.com> Tested-by: Roland Grunberg <rgrunber@redhat.com>
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.linuxtools.releng-site/pom.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/releng/org.eclipse.linuxtools.releng-site/pom.xml b/releng/org.eclipse.linuxtools.releng-site/pom.xml
index 25b93af0a0..fe59e3dc03 100644
--- a/releng/org.eclipse.linuxtools.releng-site/pom.xml
+++ b/releng/org.eclipse.linuxtools.releng-site/pom.xml
@@ -25,6 +25,44 @@
<artifactId>org.eclipse.linuxtools.releng-site</artifactId>
<packaging>eclipse-repository</packaging>
+ <profiles>
+ <profile>
+ <id>build-server</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>deploy</id>
+ <phase>install</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target>
+ <delete includeemptydirs="false">
+ <fileset
+ dir="/home/data/httpd/download.eclipse.org/linuxtools/updates-nightly">
+ <include name="**" />
+ </fileset>
+ </delete>
+ <copy includeemptydirs="false"
+ todir="/home/data/httpd/download.eclipse.org/linuxtools/updates-nightly">
+ <fileset dir="target_save/repository">
+ <include name="**" />
+ </fileset>
+ </copy>
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
<build>
<plugins>
<plugin>

Back to the top