pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <relativePath>../pom.xml</relativePath>
  6. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>be.uantwerpen.ansymo.semanticadaptation.tests</artifactId>
  11. <packaging>eclipse-test-plugin</packaging>
  12. <name>be.uantwerpen.ansymo.semanticadaptation Language Tests</name>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-clean-plugin</artifactId>
  18. <executions>
  19. <execution>
  20. <id>gen-clean</id>
  21. <phase>clean</phase>
  22. </execution>
  23. </executions>
  24. </plugin>
  25. <plugin>
  26. <groupId>org.eclipse.xtend</groupId>
  27. <artifactId>xtend-maven-plugin</artifactId>
  28. </plugin>
  29. <plugin>
  30. <!-- Remember that these tests only run in integration so between package and install http://www.vogella.com/tutorials/EclipseTycho/article.html -->
  31. <groupId>org.eclipse.tycho</groupId>
  32. <artifactId>tycho-surefire-plugin</artifactId>
  33. <version>${tycho.version}</version>
  34. <configuration>
  35. <useUIHarness>false</useUIHarness>
  36. <useUIThread>false</useUIThread>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <configuration>
  43. <!-- the tests use std out a lot so we dont want that in the console -->
  44. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>