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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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-parent</artifactId>
  6. <version>2.4.0-SNAPSHOT</version>
  7. <name>Apache FOP Parent</name>
  8. <description>XML Graphics Format Object Processor</description>
  9. <packaging>pom</packaging>
  10. <url>http://xmlgraphics.apache.org/fop/</url>
  11. <properties>
  12. <antrun.plugin.version>1.8</antrun.plugin.version>
  13. <avalon.version>4.3.1</avalon.version>
  14. <batik.version>1.9.0-SNAPSHOT</batik.version>
  15. <build.helper.plugin.version>1.9.1</build.helper.plugin.version>
  16. <checkstyle.plugin.version>2.14</checkstyle.plugin.version>
  17. <commons.io.version>1.3.1</commons.io.version>
  18. <commons.logging.version>1.0.4</commons.logging.version>
  19. <compiler.plugin.version>3.1</compiler.plugin.version>
  20. <exec.plugin.version>1.4.0</exec.plugin.version>
  21. <findbugs.plugin.version>3.0.4</findbugs.plugin.version>
  22. <jar.plugin.version>2.6</jar.plugin.version>
  23. <java.version>1.6</java.version>
  24. <junit.version>4.11</junit.version>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.info.reports.plugin.version>2.8</project.info.reports.plugin.version>
  27. <release.plugin.version>2.5.2</release.plugin.version>
  28. <surefire.plugin.version>2.18.1</surefire.plugin.version>
  29. <war.plugin.version>2.2</war.plugin.version>
  30. <xml.plugin.version>1.0.1</xml.plugin.version>
  31. <xmlgraphics.commons.version>2.4.0-SNAPSHOT</xmlgraphics.commons.version>
  32. <xmlunit.version>1.2</xmlunit.version>
  33. <jdk.path>${env.JAVA_HOME}</jdk.path>
  34. </properties>
  35. <licenses>
  36. <license>
  37. <name>The Apache Software License, Version 2.0</name>
  38. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  39. <distribution>repo</distribution>
  40. </license>
  41. </licenses>
  42. <organization>
  43. <name>Apache Software Foundation</name>
  44. <url>http://www.apache.org/</url>
  45. </organization>
  46. <modules>
  47. <module>fop</module>
  48. <module>fop-core</module>
  49. <module>fop-events</module>
  50. <module>fop-sandbox</module>
  51. <module>fop-servlet</module>
  52. <module>fop-transcoder</module>
  53. <module>fop-transcoder-allinone</module>
  54. <module>fop-util</module>
  55. </modules>
  56. <build>
  57. <pluginManagement>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-javadoc-plugin</artifactId>
  62. <configuration>
  63. <tags>
  64. <tag>
  65. <name>event.severity</name>
  66. </tag>
  67. </tags>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-checkstyle-plugin</artifactId>
  73. <version>${checkstyle.plugin.version}</version>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>${compiler.plugin.version}</version>
  79. <configuration>
  80. <source>${java.version}</source>
  81. <target>${java.version}</target>
  82. <executable>${jdk.path}/bin/javac</executable>
  83. <fork>true</fork>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-jar-plugin</artifactId>
  89. <version>${jar.plugin.version}</version>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-project-info-reports-plugin</artifactId>
  94. <version>${project.info.reports.plugin.version}</version>
  95. </plugin>
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-surefire-plugin</artifactId>
  99. <version>${surefire.plugin.version}</version>
  100. </plugin>
  101. </plugins>
  102. </pluginManagement>
  103. </build>
  104. <scm>
  105. <connection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/</connection>
  106. <url>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/</url>
  107. <developerConnection></developerConnection>
  108. </scm>
  109. <repositories>
  110. <repository>
  111. <id>apache.snapshots.https</id>
  112. <url>https://repository.apache.org/content/repositories/snapshots</url>
  113. <releases>
  114. <enabled>false</enabled>
  115. </releases>
  116. <snapshots>
  117. <enabled>true</enabled>
  118. </snapshots>
  119. </repository>
  120. <repository>
  121. <id>apache.releases.https</id>
  122. <url>https://repository.apache.org/content/repositories/releases</url>
  123. <releases>
  124. <enabled>true</enabled>
  125. </releases>
  126. <snapshots>
  127. <enabled>false</enabled>
  128. </snapshots>
  129. </repository>
  130. <repository>
  131. <id>jboss.org</id>
  132. <url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
  133. </repository>
  134. </repositories>
  135. <distributionManagement>
  136. <site>
  137. <id>${project.artifactId}-site</id>
  138. <url>${project.baseUri}</url>
  139. </site>
  140. </distributionManagement>
  141. </project>