You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.apache.xmlgraphics</groupId>
  5. <artifactId>fop-util</artifactId>
  6. <name>Apache FOP Utilities</name>
  7. <description>XML Graphics Format Object Processor Utilities</description>
  8. <parent>
  9. <groupId>org.apache.xmlgraphics</groupId>
  10. <artifactId>fop-parent</artifactId>
  11. <version>2.4.0-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <!-- compile deps -->
  15. <dependency>
  16. <groupId>org.apache.xmlgraphics</groupId>
  17. <artifactId>xmlgraphics-commons</artifactId>
  18. <version>${xmlgraphics.commons.version}</version>
  19. </dependency>
  20. <!-- test deps -->
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>${junit.version}</version>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <!-- junit testing -->
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-surefire-plugin</artifactId>
  34. <configuration>
  35. <includes>
  36. <include>**/*TestCase.java</include>
  37. </includes>
  38. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  39. </configuration>
  40. </plugin>
  41. <!-- code analysis - checkstyle -->
  42. <plugin>
  43. <artifactId>maven-checkstyle-plugin</artifactId>
  44. <configuration>
  45. <configLocation>${project.baseUri}../fop-core/src/tools/resources/checkstyle/checkstyle.xml</configLocation>
  46. <headerLocation>${project.baseUri}../fop-core/src/tools/resources/checkstyle/LICENSE.txt</headerLocation>
  47. <includeResources>false</includeResources>
  48. <includeTestResources>false</includeTestResources>
  49. <linkXRef>false</linkXRef>
  50. <logViolationsToConsole>true</logViolationsToConsole>
  51. <suppressionsLocation>${project.baseUri}../fop-core/src/tools/resources/checkstyle/suppressions.xml</suppressionsLocation>
  52. <violationSeverity>warning</violationSeverity>
  53. </configuration>
  54. </plugin>
  55. <!-- code analysis - findbugs -->
  56. <plugin>
  57. <groupId>org.codehaus.mojo</groupId>
  58. <artifactId>findbugs-maven-plugin</artifactId>
  59. <version>${findbugs.plugin.version}</version>
  60. <configuration>
  61. <excludeFilterFile>../fop-core/src/tools/resources/findbugs/exclusions.xml</excludeFilterFile>
  62. <effort>Max</effort>
  63. <threshold>Low</threshold>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. <resources>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. </resource>
  71. <resource>
  72. <directory>${basedir}/..</directory>
  73. <includes>
  74. <include>LICENSE</include>
  75. <include>NOTICE</include>
  76. </includes>
  77. <targetPath>META-INF</targetPath>
  78. </resource>
  79. </resources>
  80. <testResources>
  81. <testResource>
  82. <directory>src/test/resources</directory>
  83. <includes>
  84. <include>**/*</include>
  85. </includes>
  86. </testResource>
  87. </testResources>
  88. </build>
  89. </project>