Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Riley2019-03-21 14:21:59 +0000
committerWilliam Riley2019-03-21 15:45:50 +0000
commit47ae8d9cbf4323a1b288f6e2bf34825ae46b2705 (patch)
tree633f1cc1e3f7068f474ccbff28ebe3921ccdb3ea /debug/org.eclipse.cdt.debug.application.product
parent1d7ed13b6b8909a1341ec55398a5e77eb923a547 (diff)
downloadorg.eclipse.cdt-47ae8d9cbf4323a1b288f6e2bf34825ae46b2705.tar.gz
org.eclipse.cdt-47ae8d9cbf4323a1b288f6e2bf34825ae46b2705.tar.xz
org.eclipse.cdt-47ae8d9cbf4323a1b288f6e2bf34825ae46b2705.zip
Bug 545624 - Disable Debug RCP deployment
Diffstat (limited to 'debug/org.eclipse.cdt.debug.application.product')
-rw-r--r--debug/org.eclipse.cdt.debug.application.product/pom.xml45
1 files changed, 1 insertions, 44 deletions
diff --git a/debug/org.eclipse.cdt.debug.application.product/pom.xml b/debug/org.eclipse.cdt.debug.application.product/pom.xml
index 05efd589c62..2d2c9fe8788 100644
--- a/debug/org.eclipse.cdt.debug.application.product/pom.xml
+++ b/debug/org.eclipse.cdt.debug.application.product/pom.xml
@@ -88,7 +88,7 @@
</plugins>
</build>
- <!-- Deploy RCP builds and update site to the downloads area -->
+ <!-- materialize -->
<profiles>
<profile>
<id>production</id>
@@ -153,49 +153,6 @@
</executions>
</plugin>
-->
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>deploy</id>
- <phase>verify</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <!-- Cleanup the "rcp" destination, and copy over the new archives -->
- <delete includeemptydirs="false" failonerror="false">
- <fileset dir="${rcpDestination}">
- <include name="*.tar.gz" />
- <include name="*.zip" />
- </fileset>
- </delete>
- <mkdir dir="${rcpDestination}" />
- <copy includeemptydirs="false" todir="${rcpDestination}">
- <fileset dir="target/products">
- <include name="cdt-stand-alone-debugger-*" />
- </fileset>
- </copy>
-
- <!-- Cleanup the "rcp-repository" update site, and copy over the
- new one -->
- <delete includeemptydirs="false" failonerror="false">
- <fileset dir="${rcpSiteDestination}">
- <include name="**" />
- </fileset>
- </delete>
- <mkdir dir="${rcpSiteDestination}" />
- <copy includeemptydirs="false" todir="${rcpSiteDestination}">
- <fileset dir="target/repository">
- <include name="**" />
- </fileset>
- </copy>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
</profile>

Back to the top