Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2014-03-07 17:02:43 +0000
committerMarkus Knauer2014-03-07 21:05:18 +0000
commitecf0e2310eeed9b30305606ecdf79db5ad77115b (patch)
tree4b130fd719b70d5ed5bfb5c9756fc4fd9fa0745f /packages/org.eclipse.epp.package.rcp.product/pom.xml
parentd237984161d39db3ee24ab5438f08194b7426aed (diff)
downloadorg.eclipse.epp.packages-ecf0e2310eeed9b30305606ecdf79db5ad77115b.tar.gz
org.eclipse.epp.packages-ecf0e2310eeed9b30305606ecdf79db5ad77115b.tar.xz
org.eclipse.epp.packages-ecf0e2310eeed9b30305606ecdf79db5ad77115b.zip
Solve symbolic link in Mac OSX .tar archives
The solution replaces the tycho-p2-director:archive-products with a Bash shell script that uses the native tar + gzip + zip implementations. See bug 424769: Symbolic link missing from "Mac packages" https://bugs.eclipse.org/bugs/show_bug.cgi?id=424769 Change-Id: Ie65f98015ab8350e708b102357fa8dbe88962f66 Signed-off-by: Markus Knauer <mknauer@eclipsesource.com>
Diffstat (limited to 'packages/org.eclipse.epp.package.rcp.product/pom.xml')
-rw-r--r--packages/org.eclipse.epp.package.rcp.product/pom.xml21
1 files changed, 1 insertions, 20 deletions
diff --git a/packages/org.eclipse.epp.package.rcp.product/pom.xml b/packages/org.eclipse.epp.package.rcp.product/pom.xml
index cb84d9a0..9425c7f0 100644
--- a/packages/org.eclipse.epp.package.rcp.product/pom.xml
+++ b/packages/org.eclipse.epp.package.rcp.product/pom.xml
@@ -76,31 +76,12 @@
<goal>materialize-products</goal>
</goals>
</execution>
- <!--
- <execution>
- <id>archive-products</id>
- <phase>pre-integration-test</phase>
- <goals>
- <goal>archive-products</goal>
- </goals>
- </execution>
- -->
</executions>
<configuration>
- <!--
- <formats>
- <win32>zip</win32>
- <linux>tar.gz</linux>
- <macosx>tar.gz</macosx>
- </formats>
- -->
<products>
<product>
<id>${project.artifactId}</id>
<rootFolder>eclipse</rootFolder>
- <!--
- <archiveFileName>${project.build}_eclipse-${eclipse.epp.id}-${eclipse.simultaneous.release.id}</archiveFileName>
- -->
</product>
</products>
<profile>${project.artifactId}</profile>
@@ -139,7 +120,7 @@
<arguments>
<argument>${eclipse.epp.archiveDirectory}</argument>
<argument>${project.build.directory}/products/epp.package.${eclipse.epp.id}</argument>
- <argument>${project.build}_eclipse-${eclipse.epp.id}-${eclipse.simultaneous.release.id}</argument>
+ <argument>${build}_eclipse-${eclipse.epp.id}-${eclipse.simultaneous.release.id}</argument>
</arguments>
</configuration>
</plugin>

Back to the top