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.

xmlgraphics-fop-pom-template.pom 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <!-- $Id$ -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  20. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <groupId>org.apache.xmlgraphics</groupId>
  23. <artifactId>fop</artifactId>
  24. <packaging>jar</packaging>
  25. <name>Apache FOP</name>
  26. <version>@version@</version>
  27. <url>http://xmlgraphics.apache.org/fop/</url>
  28. <description>Apache FOP (Formatting Objects Processor) is the world's first print formatter driven by XSL formatting objects (XSL-FO) and the world's first output independent formatter. It is a Java application that reads a formatting object (FO) tree and renders the resulting pages to a specified output. Output formats currently supported include PDF, PCL, PS, AFP, TIFF, PNG, SVG, XML (area tree representation), Print, AWT and TXT. The primary output target is PDF.</description>
  29. <inceptionYear>1999</inceptionYear>
  30. <mailingLists>
  31. <mailingList>
  32. <name>FOP Users List</name>
  33. <subscribe>fop-users-subscribe@xmlgraphics.apache.org</subscribe>
  34. <unsubscribe>fop-users-unsubscribe@xmlgraphics.apache.org</unsubscribe>
  35. <archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-fop-users/</archive>
  36. </mailingList>
  37. <mailingList>
  38. <name>FOP Developer List</name>
  39. <subscribe>fop-dev-subscribe@xmlgraphics.apache.org</subscribe>
  40. <unsubscribe>fop-dev-unsubscribe@xmlgraphics.apache.org</unsubscribe>
  41. <archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-fop-dev/</archive>
  42. </mailingList>
  43. <mailingList>
  44. <name>FOP Commit List</name>
  45. <subscribe>fop-commits-subscribe@xmlgraphics.apache.org</subscribe>
  46. <unsubscribe>fop-commits-unsubscribe@xmlgraphics.apache.org</unsubscribe>
  47. <archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-fop-commits/</archive>
  48. </mailingList>
  49. </mailingLists>
  50. <licenses>
  51. <license>
  52. <name>The Apache Software License, Version 2.0</name>
  53. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  54. <distribution>repo</distribution>
  55. </license>
  56. </licenses>
  57. <scm>
  58. <connection>scm:svn:http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk</connection>
  59. <developerConnection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk</developerConnection>
  60. <url>http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/?root=Apache-SVN</url>
  61. </scm>
  62. <organization>
  63. <name>Apache Software Foundation</name>
  64. <url>http://www.apache.org/</url>
  65. </organization>
  66. <parent>
  67. <groupId>org.apache</groupId>
  68. <artifactId>apache</artifactId>
  69. <version>7</version>
  70. </parent>
  71. <dependencies>
  72. <!-- XML Graphics -->
  73. <dependency>
  74. <groupId>org.apache.xmlgraphics</groupId>
  75. <artifactId>xmlgraphics-commons</artifactId>
  76. <version>1.5</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.xmlgraphics</groupId>
  80. <artifactId>batik-svg-dom</artifactId>
  81. <version>1.7</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.xmlgraphics</groupId>
  85. <artifactId>batik-bridge</artifactId>
  86. <version>1.7</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.xmlgraphics</groupId>
  90. <artifactId>batik-awt-util</artifactId>
  91. <version>1.7</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.xmlgraphics</groupId>
  95. <artifactId>batik-gvt</artifactId>
  96. <version>1.7</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.xmlgraphics</groupId>
  100. <artifactId>batik-transcoder</artifactId>
  101. <version>1.7</version>
  102. <exclusions>
  103. <exclusion>
  104. <groupId>org.apache.xmlgraphics</groupId>
  105. <artifactId>fop</artifactId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.xmlgraphics</groupId>
  111. <artifactId>batik-extension</artifactId>
  112. <version>1.7</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.xmlgraphics</groupId>
  116. <artifactId>batik-ext</artifactId>
  117. <version>1.7</version>
  118. </dependency>
  119. <!-- other dependencies -->
  120. <dependency>
  121. <groupId>commons-logging</groupId>
  122. <artifactId>commons-logging</artifactId>
  123. <version>1.0.4</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>commons-io</groupId>
  127. <artifactId>commons-io</artifactId>
  128. <version>1.3.1</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>avalon-framework</groupId>
  132. <artifactId>avalon-framework-api</artifactId>
  133. <version>4.2.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>avalon-framework</groupId>
  137. <artifactId>avalon-framework-impl</artifactId>
  138. <version>4.2.0</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>javax.servlet</groupId>
  142. <artifactId>servlet-api</artifactId>
  143. <version>2.2</version>
  144. <scope>provided</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>xalan</groupId>
  148. <artifactId>xalan</artifactId>
  149. <version>2.7.0</version>
  150. <scope>provided</scope>
  151. </dependency>
  152. </dependencies>
  153. </project>