pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.cg.cpp.tests</artifactId>
  11. <packaging>eclipse-test-plugin</packaging>
  12. <name>be.uantwerpen.ansymo.semanticadaptation Code Generation to C++ 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
  31. and install http://www.vogella.com/tutorials/EclipseTycho/article.html -->
  32. <groupId>org.eclipse.tycho</groupId>
  33. <artifactId>tycho-surefire-plugin</artifactId>
  34. <version>${tycho.version}</version>
  35. <configuration>
  36. <useUIHarness>false</useUIHarness>
  37. <useUIThread>false</useUIThread>
  38. </configuration>
  39. </plugin>
  40. <!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId>
  41. <executions> <execution> <id>copy</id> <phase>pre-integration-test</phase>
  42. <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem>
  43. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId> <artifactId>be.uantwerpen.ansymo.semanticadaptation.cg.cpp.lib</artifactId>
  44. <type>jar</type> <version>${project.version}</version> <overWrite>true</overWrite>
  45. <destFileName>cppFramework.jar</destFileName> </artifactItem> </artifactItems>
  46. <outputDirectory>${project.basedir}/jars</outputDirectory> <overWriteReleases>false</overWriteReleases>
  47. <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer>
  48. </configuration> </execution> </executions> </plugin -->
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-surefire-plugin</artifactId>
  52. <configuration>
  53. <!-- the tests use std out a lot so we dont want that in the console -->
  54. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>