/maven-testability-plugin/src/test/resources/xmlTestability.xml

http://testability-explorer.googlecode.com/ · XML · 29 lines · 25 code · 1 blank · 3 comment · 0 complexity · 829e963e3dd616ef322d447858dd402c MD5 · raw file

  1. <project>
  2. <build>
  3. <plugins>
  4. <plugin>
  5. <groupId>com.google.testability-explorer</groupId>
  6. <artifactId>maven-testability-plugin</artifactId>
  7. <configuration>
  8. <filter>com.google</filter>
  9. <mavenProject implementation="com.google.maven.ProjectStub"/>
  10. <!-- TODO: we shouldn't need all these options populated.
  11. There are defaults in the Mojo, but they don't get filled in.
  12. See http://jira.codehaus.org/browse/MPLUGINTESTING-7 -->
  13. <whiteList>foo</whiteList>
  14. <cyclomatic>1</cyclomatic>
  15. <global>10</global>
  16. <constructor>1</constructor>
  17. <printDepth>2</printDepth>
  18. <minCost>1</minCost>
  19. <worstOffenderCount>20</worstOffenderCount>
  20. <maxAcceptableCost>100</maxAcceptableCost>
  21. <maxExcellentCost>50</maxExcellentCost>
  22. <outputDirectory>target/testability</outputDirectory>
  23. <targetDirectory>target</targetDirectory>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. </build>
  28. </project>