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 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.8.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. <ant.version>1.9.15</ant.version>
  13. <antrun.plugin.version>1.8</antrun.plugin.version>
  14. <batik.version>1.15.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>2.11.0</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>3.1.1</jar.plugin.version>
  23. <java.version>1.8</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>3.3.2</war.plugin.version>
  30. <xml.plugin.version>1.0.1</xml.plugin.version>
  31. <xmlgraphics.commons.version>2.8.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. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-jar-plugin</artifactId>
  87. <version>${jar.plugin.version}</version>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-project-info-reports-plugin</artifactId>
  92. <version>${project.info.reports.plugin.version}</version>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-surefire-plugin</artifactId>
  97. <version>${surefire.plugin.version}</version>
  98. </plugin>
  99. </plugins>
  100. </pluginManagement>
  101. </build>
  102. <profiles>
  103. <profile>
  104. <id>custom-javac</id>
  105. <activation>
  106. <property>
  107. <name>jdk.path</name>
  108. </property>
  109. </activation>
  110. <build>
  111. <pluginManagement>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-compiler-plugin</artifactId>
  116. <version>${compiler.plugin.version}</version>
  117. <configuration>
  118. <source>${java.version}</source>
  119. <target>${java.version}</target>
  120. <executable>${jdk.path}/bin/javac</executable>
  121. <fork>true</fork>
  122. </configuration>
  123. </plugin>
  124. </plugins>
  125. </pluginManagement>
  126. </build>
  127. </profile>
  128. </profiles>
  129. <scm>
  130. <connection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/</connection>
  131. <url>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/</url>
  132. <developerConnection></developerConnection>
  133. </scm>
  134. <repositories>
  135. <repository>
  136. <id>apache.snapshots.https</id>
  137. <url>https://repository.apache.org/content/repositories/snapshots</url>
  138. <releases>
  139. <enabled>false</enabled>
  140. </releases>
  141. <snapshots>
  142. <enabled>true</enabled>
  143. </snapshots>
  144. </repository>
  145. <repository>
  146. <id>apache.releases.https</id>
  147. <url>https://repository.apache.org/content/repositories/releases</url>
  148. <releases>
  149. <enabled>true</enabled>
  150. </releases>
  151. <snapshots>
  152. <enabled>false</enabled>
  153. </snapshots>
  154. </repository>
  155. <repository>
  156. <id>jboss.org</id>
  157. <url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
  158. </repository>
  159. </repositories>
  160. <distributionManagement>
  161. <site>
  162. <id>${project.artifactId}-site</id>
  163. <url>${project.baseUri}</url>
  164. </site>
  165. </distributionManagement>
  166. </project>