Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2017-09-14 13:22:58 +0000
committerMarkus Knauer2017-09-14 13:23:37 +0000
commit4557e2491b9661ed54f09c107996a7b4bdb1da45 (patch)
treef54fc9936f644f8f66e7ad41d94b4baa340e05f5
parentbf135d72f2b02c9663178efa5464b635a52abe9d (diff)
downloadorg.eclipse.epp.packages-4557e2491b9661ed54f09c107996a7b4bdb1da45.tar.gz
org.eclipse.epp.packages-4557e2491b9661ed54f09c107996a7b4bdb1da45.tar.xz
org.eclipse.epp.packages-4557e2491b9661ed54f09c107996a7b4bdb1da45.zip
Enable signing and DMG creation for iOS again
Revert "Create unsigned tar.gz archives instead of DMG for Mac OS" This reverts commit bf135d72f2b02c9663178efa5464b635a52abe9d. Change-Id: I95fb22a956ccf552191843b0f041e980ad98023c Signed-off-by: Markus Knauer <mknauer@eclipsesource.com>
-rw-r--r--releng/org.eclipse.epp.config/parent/pom.xml4
-rw-r--r--releng/org.eclipse.epp.config/parent/product/pom.xml4
2 files changed, 1 insertions, 7 deletions
diff --git a/releng/org.eclipse.epp.config/parent/pom.xml b/releng/org.eclipse.epp.config/parent/pom.xml
index 010f45fc..39efe96d 100644
--- a/releng/org.eclipse.epp.config/parent/pom.xml
+++ b/releng/org.eclipse.epp.config/parent/pom.xml
@@ -353,13 +353,11 @@
<profile>${project.artifactId}</profile>
</configuration>
</plugin>
-<!--
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-dmg-packager</artifactId>
<version>${cbi.version}</version>
</plugin>
--->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
@@ -374,9 +372,7 @@
<fileset dir="${project.build.directory}/products">
<include name="*.zip" />
<include name="*linux*.tar.gz" />
-<!--
<include name="*.dmg" />
--->
</fileset>
</copy>
</target>
diff --git a/releng/org.eclipse.epp.config/parent/product/pom.xml b/releng/org.eclipse.epp.config/parent/product/pom.xml
index 6281d887..b7490b70 100644
--- a/releng/org.eclipse.epp.config/parent/product/pom.xml
+++ b/releng/org.eclipse.epp.config/parent/product/pom.xml
@@ -79,7 +79,6 @@
<artifactId>tycho-p2-director-plugin</artifactId>
</plugin>
-<!--
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-dmg-packager</artifactId>
@@ -92,12 +91,11 @@
<configuration>
<source>${project.build.directory}/products/${build}_eclipse-${eclipse.epp.id}-${eclipse.simultaneous.release.id}-macosx.cocoa.x86_64.tar.gz</source>
<sign>${eclipse-sign-dmg-property}</sign>
- <connectTimeoutMillis>600000</connectTimeoutMillis>
+ <connectTimeoutMillis>600000</connectTimeoutMillis> <!-- 10 min -->
</configuration>
</execution>
</executions>
</plugin>
- -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>

Back to the top