/cpp/pom.xml

http://testability-explorer.googlecode.com/ · XML · 42 lines · 40 code · 2 blank · 0 comment · 0 complexity · 3fda81cb8ea3b27a16ef628dd02f8663 MD5 · raw file

  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.google.testability-explorer</groupId>
  8. <artifactId>testability-explorer-parent</artifactId>
  9. <version>1.3.3-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>cpp</artifactId>
  12. <name>Testability Explorer - C++</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.google.testability-explorer</groupId>
  16. <artifactId>testability-explorer</artifactId>
  17. <version>${version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.codehaus.mojo</groupId>
  28. <artifactId>antlr-maven-plugin</artifactId>
  29. <configuration>
  30. <grammars>cppparser.g</grammars>
  31. </configuration>
  32. <executions>
  33. <execution>
  34. <goals><goal>generate</goal></goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>