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.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.2.0-SNAPSHOT</version>
  7. <name>${project.groupId}:${project.artifactId}</name>
  8. <description>XML Graphics Format Object Processor</description>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <antrun.plugin.version>1.8</antrun.plugin.version>
  12. <batik.version>1.9.0-SNAPSHOT</batik.version>
  13. <build.helper.plugin.version>1.10</build.helper.plugin.version>
  14. <checkstyle.plugin.version>2.15</checkstyle.plugin.version>
  15. <exec.plugin.version>1.4.0</exec.plugin.version>
  16. <findbugs.plugin.version>3.0.1</findbugs.plugin.version>
  17. <jar.plugin.version>2.6</jar.plugin.version>
  18. <java.version>1.6</java.version>
  19. <junit.version>4.11</junit.version>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.info.reports.plugin.version>2.8</project.info.reports.plugin.version>
  22. <release.plugin.version>2.5.2</release.plugin.version>
  23. <surefire.plugin.version>2.18.1</surefire.plugin.version>
  24. <xml.plugin.version>1.0.1</xml.plugin.version>
  25. <xmlgraphics.commons.version>2.2.0-SNAPSHOT</xmlgraphics.commons.version>
  26. <xmlunit.version>1.2</xmlunit.version>
  27. </properties>
  28. <licenses>
  29. <license>
  30. <name>The Apache Software License, Version 2.0</name>
  31. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  32. <distribution>repo</distribution>
  33. </license>
  34. </licenses>
  35. <organization>
  36. <name>Apache Software Foundation</name>
  37. <url>http://www.apache.org/</url>
  38. </organization>
  39. <modules>
  40. <module>fop</module>
  41. <!-- <module>fop-servlet</module> -->
  42. <!-- <module>fop-transcoder</module> -->
  43. </modules>
  44. <build>
  45. <pluginManagement>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <configuration>
  51. <source>${java.version}</source>
  52. <target>${java.version}</target>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-project-info-reports-plugin</artifactId>
  58. <version>${project.info.reports.plugin.version}</version>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-surefire-plugin</artifactId>
  63. <version>${surefire.plugin.version}</version>
  64. </plugin>
  65. </plugins>
  66. </pluginManagement>
  67. </build>
  68. <scm>
  69. <connection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/</connection>
  70. <url>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/</url>
  71. <developerConnection></developerConnection>
  72. </scm>
  73. <repositories>
  74. <repository>
  75. <id>apache.snapshots.https</id>
  76. <url>https://repository.apache.org/content/repositories/snapshots</url>
  77. <snapshots>
  78. <enabled>true</enabled>
  79. </snapshots>
  80. </repository>
  81. </repositories>
  82. <distributionManagement>
  83. <site>
  84. <id>${project.artifactId}-site</id>
  85. <url>${project.baseUri}</url>
  86. </site>
  87. </distributionManagement>
  88. </project>