Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Ufimtsev2017-07-05 13:47:43 +0000
committerLeo Ufimtsev2017-07-10 20:24:02 +0000
commit2f5dd1c291f9d93fe8a19be2393423b0f39d488f (patch)
tree6cce9283481c2b3a9a3903d163c16d6954932caa /pom.xml
parentb31430ea5c9b0164d544b764a36b6586713c97b6 (diff)
downloadeclipse.platform.swt-2f5dd1c291f9d93fe8a19be2393423b0f39d488f.tar.gz
eclipse.platform.swt-2f5dd1c291f9d93fe8a19be2393423b0f39d488f.tar.xz
eclipse.platform.swt-2f5dd1c291f9d93fe8a19be2393423b0f39d488f.zip
Bug 519237 [Cocoa] mvn -Pbuild-individual-bundles fails on OSX due to
missing -XstartOnFirstThread vm arg Adding missing argument for maven test execution. See bug submission for details. Change-Id: Ie6faf2b22afc537373984388684646d6b7054b42 Signed-off-by: Leo Ufimtsev <lufimtse@redhat.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index f53e258530..8d3e13597c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,6 +27,7 @@
<properties>
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.swt.git</tycho.scmUrl>
+ <os-jvm-flags></os-jvm-flags>
</properties>
<!--
@@ -76,6 +77,9 @@
<modules>
<module>tests/org.eclipse.swt.tests.cocoa</module>
</modules>
+ <properties>
+ <os-jvm-flags>-XstartOnFirstThread</os-jvm-flags>
+ </properties>
</profile>
<profile>
<id>unix</id>

Back to the top