Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Updating the test bundle's pom to run SWTBot off the UI thread. This
Browse files Browse the repository at this point in the history
fixes build failures that occur only while running the maven build.

Signed-off-by: Jordan Deyton <deytonjh@ornl.gov>
  • Loading branch information
Jordan Deyton committed Jun 22, 2015
1 parent c3cfcdc commit 8950c1d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/org.eclipse.ice.viz.service.visit.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,22 @@
<artifactId>org.eclipse.ice.viz.service.visit.test</artifactId>
<version>2.0.0</version>
<packaging>eclipse-test-plugin</packaging>

<build>
<plugins>
<!-- Configure the build to handle SWTBot -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<useUIHarness>true</useUIHarness>
<useUIThread>false</useUIThread>
<product>org.eclipse.sdk.ide</product>
<application>org.eclipse.ui.ide.workbench</application>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 8950c1d

Please sign in to comment.