blob: b94aa67f22b6065eaf02f541f73c8bf83b1088a7 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../releng/org.eclipse.emf.parsley.parent/pom.xml</relativePath>
<groupId>org.eclipse.emf.parsley</groupId>
<artifactId>org.eclipse.emf.parsley.parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.emf.parsley.dsl.tests</artifactId>
<packaging>eclipse-test-plugin</packaging>
<dependencies>
<dependency>
<!-- needed for running plain Junit tests with Maven surefire plugin -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.xtend</groupId>
<artifactId>xtend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<executions>
<execution>
<!-- The execution id default-test must be left to tycho-surefire-plugin
since it will execute it anyway -->
<id>MavenSurefirePluginTest</id>
<phase>test</phase>
<configuration>
<skip>${dsl.tests.skip}</skip>
<!-- tycho.testArgLine repeated to re-use the configuration for argLine
for jacoco agent -->
<argLine>${tycho.testArgLine} ${memoryArgs}</argLine>
<testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
<includes>
<include>**/org/eclipse/emf/parsley/dsl/tests/*Tests.java</include>
</includes>
<excludes>
<exclude>**/org/eclipse/emf/parsley/dsl/tests/*AllTests.java</exclude>
<exclude>**/org/eclipse/emf/parsley/dsl/tests/*AbstractTests.java</exclude>
<exclude>**/org/eclipse/emf/parsley/dsl/tests/*DslGeneratorTests.java</exclude>
</excludes>
</configuration>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<!-- compiler tests need an OSGI environment, but no UI -->
<id>default-test</id>
<phase>integration-test</phase>
<configuration>
<skip>${dsl.tests.skip}</skip>
<useUIHarness>false</useUIHarness>
<useUIThread>false</useUIThread>
<!-- tycho.testArgLine repeated to re-use the configuration for argLine
for jacoco agent -->
<argLine>${tycho.testArgLine} ${memoryArgs}</argLine>
<includes>
<include>**/org/eclipse/emf/parsley/dsl/tests/*DslGeneratorTests.java</include>
</includes>
</configuration>
<goals>
<goal>test</goal>
</goals>
</execution>
<execution>
<id>TychoSurefirePluginUiTest</id>
<phase>integration-test</phase>
<configuration>
<skip>${dsl.tests.skip}</skip>
<useUIHarness>true</useUIHarness>
<useUIThread>true</useUIThread>
<!-- tycho.testArgLine repeated to re-use the configuration for argLine
for jacoco agent -->
<argLine>${tycho.testArgLine} ${uiTestsArgs} ${pdeTestsArgs}</argLine>
<includes>
<include>**/org/eclipse/emf/parsley/dsl/ui/tests/*Test.java</include>
</includes>
</configuration>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<dependency-resolution>
<extraRequirements>
<!-- to get the org.eclipse.osgi.compatibility.state plugin iff
the targeted Eclipse version (e.g., Luna) has it
(backwards compatible with kepler and previous versions) -->
<requirement>
<type>eclipse-feature</type>
<id>org.eclipse.rcp</id>
<versionRange>0.0.0</versionRange>
</requirement>
</extraRequirements>
</dependency-resolution>
</configuration>
</plugin>
</plugins>
</build>
</project>