mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Bug 575654 - fix packaging order
Change-Id: I2d41d42f55a54cc8f0b0b437f78025d9a91aa3c4 Signed-off-by: Greg Watson <g.watson@computer.org>
This commit is contained in:
parent
fc1583b7d8
commit
3f49713898
1 changed files with 33 additions and 25 deletions
|
@ -45,38 +45,46 @@
|
||||||
</product>
|
</product>
|
||||||
</products>
|
</products>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>materialize-products</id>
|
||||||
|
<goals>
|
||||||
|
<goal>materialize-products</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>archive-products</id>
|
||||||
|
<!-- must run after signing -->
|
||||||
|
<phase>pre-integration-test</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>archive-products</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>create-distributions</id>
|
<id>copy-built-proxy-servers-to-individual-bundles</id>
|
||||||
|
<!-- must run after signing *and* after archiving -->
|
||||||
|
<phase>pre-integration-test</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>materialize-products</goal>
|
<goal>run</goal>
|
||||||
<goal>archive-products</goal>
|
|
||||||
</goals>
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<tasks>
|
||||||
|
<copy file="${project.build.directory}/products/proxy.server-linux.gtk.x86_64.tar.gz"
|
||||||
|
tofile="${basedir}/../org.eclipse.remote.proxy.server.linux.x86_64/proxy.server.tar.gz"/>
|
||||||
|
<copy file="${project.build.directory}/products/proxy.server-linux.gtk.ppc64le.tar.gz"
|
||||||
|
tofile="${basedir}/../org.eclipse.remote.proxy.server.linux.ppc64le/proxy.server.tar.gz"/>
|
||||||
|
<copy file="${project.build.directory}/products/proxy.server-macosx.cocoa.x86_64.tar.gz"
|
||||||
|
tofile="${basedir}/../org.eclipse.remote.proxy.server.macosx.x86_64/proxy.server.tar.gz"/>
|
||||||
|
</tasks>
|
||||||
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-antrun-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>copy-built-proxy-servers-to-individual-bundles</id>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>run</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<tasks>
|
|
||||||
<copy file="${project.build.directory}/products/proxy.server-linux.gtk.x86_64.tar.gz"
|
|
||||||
tofile="${basedir}/../org.eclipse.remote.proxy.server.linux.x86_64/proxy.server.tar.gz"/>
|
|
||||||
<copy file="${project.build.directory}/products/proxy.server-linux.gtk.ppc64le.tar.gz"
|
|
||||||
tofile="${basedir}/../org.eclipse.remote.proxy.server.linux.ppc64le/proxy.server.tar.gz"/>
|
|
||||||
<copy file="${project.build.directory}/products/proxy.server-macosx.cocoa.x86_64.tar.gz"
|
|
||||||
tofile="${basedir}/../org.eclipse.remote.proxy.server.macosx.x86_64/proxy.server.tar.gz"/>
|
|
||||||
</tasks>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue