pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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>3.0.0-SNAPSHOT</version>
  10. <relativePath>../../releng/org.yakindu.sct.releng/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>org.yakindu.sct.model.stext.test</artifactId>
  13. <groupId>org.yakindu.sct.plugins</groupId>
  14. <packaging>eclipse-test-plugin</packaging>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.eclipse.tycho</groupId>
  19. <artifactId>tycho-surefire-plugin</artifactId>
  20. <version>${tycho-version}</version>
  21. <configuration>
  22. <useUIHarness>false</useUIHarness>
  23. <useUIThread>false</useUIThread>
  24. <testFailureIgnore>${testFailureIgnore}</testFailureIgnore>
  25. <argLine>${test.vmargs}</argLine>
  26. </configuration>
  27. </plugin>
  28. <plugin>
  29. <artifactId>maven-clean-plugin</artifactId>
  30. <configuration>
  31. <filesets>
  32. <fileset>
  33. <directory>xtend-gen</directory>
  34. <includes>
  35. <include>**</include>
  36. </includes>
  37. <excludes>
  38. <exclude>.gitignore</exclude>
  39. <exclude>.svn/</exclude>
  40. </excludes>
  41. </fileset>
  42. </filesets>
  43. </configuration>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.eclipse.xtend</groupId>
  47. <artifactId>xtend-maven-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <goals>
  51. <goal>compile</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>