pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.yakindu.sct</groupId>
  8. <artifactId>org.yakindu.sct.releng</artifactId>
  9. <version>2.2.0-SNAPSHOT</version>
  10. <relativePath>../org.yakindu.sct.releng/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>org.yakindu.sct.simulation.core.sexec.test</artifactId>
  13. <groupId>org.yakindu.sct.plugins</groupId>
  14. <packaging>eclipse-test-plugin</packaging>
  15. <properties>
  16. <testFailureIgnore>false</testFailureIgnore>
  17. </properties>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.eclipse.tycho</groupId>
  22. <artifactId>tycho-surefire-plugin</artifactId>
  23. <version>${tycho-version}</version>
  24. <configuration>
  25. <excludes>
  26. <exclude>**/util/TestModels.class</exclude>
  27. <!-- It's toooo slow in the interpreter -->
  28. <exclude>**/PerformanceTestTest.class</exclude>
  29. </excludes>
  30. <useUIHarness>false</useUIHarness>
  31. <useUIThread>false</useUIThread>
  32. <testFailureIgnore>${testFailureIgnore}</testFailureIgnore>
  33. <argLine>${test.vmargs}</argLine>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>