| <?xml version="1.0" encoding="UTF-8"?> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>org.eclipse.papyrus.sysml16.parent</artifactId> |
| <groupId>org.eclipse.papyrus.sysml</groupId> |
| <version>1.0.0</version> |
| </parent> |
| <artifactId>org.eclipse.papyrus.sysml16.plugins.tests</artifactId> |
| <packaging>pom</packaging> |
| <name>SysML Tests Plug-ins</name> |
| <description>SysML Tests Plug-ins.</description> |
| <modules> |
| <module>core</module> |
| <module>gui</module> |
| <module>diagram</module> |
| <module>table</module> |
| </modules> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-surefire-plugin</artifactId> |
| <configuration> |
| <failIfNoTests>false</failIfNoTests> |
| <useUIHarness>true</useUIHarness> |
| <useUIThread>true</useUIThread> |
| <testFailureIgnore>true</testFailureIgnore> |
| <!-- <showEclipseLog>true</showEclipseLog> --> |
| <testFailureIgnore>true</testFailureIgnore> |
| <jvmArgs> |
| <args>${ui.test.vmargs}</args> |
| </jvmArgs> |
| <bundleStartLevel> |
| <bundle> |
| <id>${component.servicetype}</id> |
| <level>6</level> |
| <autoStart>true</autoStart> |
| </bundle> |
| <bundle> |
| <id>org.eclipse.equinox.launcher</id> |
| <level>4</level> |
| <autoStart>true</autoStart> |
| </bundle> |
| </bundleStartLevel> |
| <dependencies> |
| <dependency> |
| <type>p2-installable-unit</type> |
| <artifactId>org.apache.felix.scr</artifactId> |
| </dependency> |
| <dependency> |
| <type>p2-installable-unit</type> |
| <artifactId>org.eclipse.equinox.event</artifactId> |
| </dependency> |
| </dependencies> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |