/eclipse-plugin/pom.xml

http://testability-explorer.googlecode.com/ · XML · 53 lines · 52 code · 1 blank · 0 comment · 0 complexity · 4789b1629f2b9e116dd4dc5941238feb MD5 · raw file

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.google.testability-explorer</groupId>
  5. <artifactId>testability-explorer-parent</artifactId>
  6. <version>1.3.4-SNAPSHOT</version>
  7. </parent>
  8. <dependencies>
  9. <dependency>
  10. <groupId>com.google.testability-explorer</groupId>
  11. <artifactId>testability-explorer</artifactId>
  12. <version>${version}</version>
  13. </dependency>
  14. </dependencies>
  15. <artifactId>eclipse-plugin</artifactId>
  16. <name>Testability Explorer - Eclipse plugin</name>
  17. <packaging>jar</packaging>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <artifactId>maven-antrun-plugin</artifactId>
  22. <version>1.3</version>
  23. <executions>
  24. <execution>
  25. <id>compile</id>
  26. <phase>compile</phase>
  27. <configuration>
  28. <tasks>
  29. <ant />
  30. </tasks>
  31. </configuration>
  32. <goals>
  33. <goal>run</goal>
  34. </goals>
  35. </execution>
  36. <execution>
  37. <id>clean</id>
  38. <phase>clean</phase>
  39. <configuration>
  40. <tasks>
  41. <ant target="clean" />
  42. </tasks>
  43. </configuration>
  44. <goals>
  45. <goal>run</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>