blob: 55407d4bb07de45f6de23a7b7bf8be91d1e97983 [file] [log] [blame]
<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">
<name>EASE Unit Tests</name>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.ease.core.tests</artifactId>
<version>0.8.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.eclipse.ease</groupId>
<version>0.8.0-SNAPSHOT</version>
<artifactId>org.eclipse.ease.releng</artifactId>
<relativePath>../releng/org.eclipse.ease.releng</relativePath>
</parent>
<build>
<plugins>
<!-- set JUnit runner to Junit 5 -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<providerHint>junit5</providerHint>
</configuration>
</plugin>
<!-- enable JaCoCo code coverage -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<configuration>
<output>file</output>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<phase>pre-integration-test</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>