1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 545624 - Disable Debug RCP deployment

Change-Id: I7ab18048e0a2d5282f8c063a4bb0524aa6f1f3bc
This commit is contained in:
William Riley 2019-03-21 14:21:59 +00:00
parent 1d7ed13b6b
commit 47ae8d9cbf

View file

@ -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>