<?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 POM (i.e., Tests) --> | |
<parent> | |
<groupId>org.eclipse.papyrus.moka</groupId> | |
<artifactId>org.eclipse.papyrus.moka.tests</artifactId> | |
<version>2.0.0-SNAPSHOT</version> | |
</parent> | |
<!-- POM Description --> | |
<artifactId>org.eclipse.papyrus.moka.tests.semantics</artifactId> | |
<packaging>pom</packaging> | |
<name>Semantic tests (Semantics folder)</name> | |
<build> | |
<plugins> | |
<!-- Tests execution --> | |
<plugin> | |
<groupId>org.eclipse.tycho</groupId> | |
<artifactId>tycho-surefire-plugin</artifactId> | |
<version>${tycho-version}</version> | |
<configuration> | |
<failIfNoTests>false</failIfNoTests> | |
<useUIHarness>true</useUIHarness> | |
<useUIThread>true</useUIThread> | |
<includes> | |
<include>**/AllTests.java</include> | |
</includes> | |
</configuration> | |
<executions> | |
<execution> | |
<phase>test</phase> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<!-- Modules to build --> | |
<modules> | |
<module>org.eclipse.papyrus.moka.semantics.tests</module> | |
</modules> | |
</project> |