Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorTom Schindl2013-07-06 20:52:02 +0000
committerTom Schindl2013-07-06 20:52:02 +0000
commit13818976efdc234eedd2aef6a8328ab0f3985bc6 (patch)
tree44c9f5e66346f0f469c02b507a6cae6c52e2ebf4 /releng
parentb486d338436bbb5cf810e6a536fc8f6f2d1579ca (diff)
downloadorg.eclipse.efxclipse-13818976efdc234eedd2aef6a8328ab0f3985bc6.tar.gz
org.eclipse.efxclipse-13818976efdc234eedd2aef6a8328ab0f3985bc6.tar.xz
org.eclipse.efxclipse-13818976efdc234eedd2aef6a8328ab0f3985bc6.zip
publish
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.fx.ide.updatesite/pom.xml36
-rw-r--r--releng/org.eclipse.fx.updatesite/pom.xml5
2 files changed, 36 insertions, 5 deletions
diff --git a/releng/org.eclipse.fx.ide.updatesite/pom.xml b/releng/org.eclipse.fx.ide.updatesite/pom.xml
index c2afcd980..3f6406045 100644
--- a/releng/org.eclipse.fx.ide.updatesite/pom.xml
+++ b/releng/org.eclipse.fx.ide.updatesite/pom.xml
@@ -24,5 +24,41 @@
</plugin>
</plugins>
</build>
+
+ <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>
+ <tasks>
+ <delete includeemptydirs="false">
+ <fileset dir="${download-publish-path}">
+ <include name="**" />
+ </fileset>
+ </delete>
+ <copy includeemptydirs="false" todir="${download-publish-path}">
+ <fileset dir="target">
+ <include name="**" />
+ </fileset>
+ </copy>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project> \ No newline at end of file
diff --git a/releng/org.eclipse.fx.updatesite/pom.xml b/releng/org.eclipse.fx.updatesite/pom.xml
index 962e74a4f..b6cfce660 100644
--- a/releng/org.eclipse.fx.updatesite/pom.xml
+++ b/releng/org.eclipse.fx.updatesite/pom.xml
@@ -52,11 +52,6 @@
</delete>
<copy includeemptydirs="false" todir="${download-publish-path}">
<fileset dir="target">
- <include name="site_assembly.zip" />
- </fileset>
- </copy>
- <copy includeemptydirs="false" todir="${download-publish-path}">
- <fileset dir="target">
<include name="**" />
</fileset>
</copy>

Back to the top